mcp-management
Manages MCP (Model Context Protocol) servers for Claude Code and Claude Desktop. Activates for: finding MCP servers, MCP registries, MCP server setup, MCP configuration, MCP troubleshooting, MCP security, building MCP servers, MCP transport selection, claude mcp commands, mcp.json files, mcpServers configuration, tool poisoning prevention, MCP debugging, Smithery, Glama, GitHub MCP registry, which MCP server should I use. NOT for: general Claude Code settings (use claude-code-mastery), OAuth/authentication unrelated to MCP, generic API integrations without MCP.
What this skill does
# MCP Management
Comprehensive guide for finding, configuring, securing, and building MCP servers
for Claude Code and Claude Desktop.
## Quick Navigation
- **Find Servers**: See [Discovering MCP Servers](#discovering-mcp-servers)
- **Configure Servers**: See [references/server-configs.md](references/server-configs.md)
- **Build Custom Servers**: See [references/building-servers.md](references/building-servers.md)
- **Security**: See [references/security-essentials.md](references/security-essentials.md)
- **Troubleshooting**: See [references/troubleshooting.md](references/troubleshooting.md)
- **Enterprise**: See [references/enterprise-config.md](references/enterprise-config.md)
## Platform Differences
| Aspect | Claude Code | Claude Desktop |
|-------------------|------------------------------|-------------------------------------------------------------------|
| Config location | `~/.claude/settings.json` | `~/Library/Application Support/Claude/claude_desktop_config.json` |
| CLI management | `claude mcp add/list/remove` | Manual JSON editing |
| Scopes | local/project/user | Single config |
| Hot reload | Supported | Requires full restart (Cmd+Q) |
| Can act as server | Yes (`claude mcp serve`) | No |
## Discovering MCP Servers
### Primary Registries
| Registry | Servers | Best For |
|--------------------------------------------------------------------|-----------|------------------------------------------|
| [Official MCP Registry](https://registry.modelcontextprotocol.io/) | Canonical | Verified, authoritative source |
| [GitHub MCP Registry](https://github.com/mcp) | Curated | GitHub-native, one-click VS Code install |
| [Smithery.ai](https://smithery.ai/) | 4,600+ | Usage metrics, edge deployment |
| [Glama.ai](https://glama.ai/mcp/servers) | 10,000+ | Hosted option, no local setup |
| [PulseMCP](https://www.pulsemcp.com/servers) | 7,500+ | Daily updates, streaming focus |
### Specialized Directories
| Registry | Focus |
|-------------------------------------------------------------------------------|--------------------------------------|
| [Cursor Directory](https://cursor.directory/mcp) | Cursor IDE optimized (1,800+) |
| [Mastra](https://mastra.ai/mcp-registry-registry) | Meta-aggregator across registries |
| [MCP.so](https://mcp.so/) | Quality-verified listings |
| [Awesome MCP Servers](https://github.com/punkpeye/awesome-mcp-servers) | Community curated GitHub list |
| [HiMCP.ai](https://himcp.ai/) | Uptime & performance metrics |
| [MCPdb.org](https://mcpdb.org/) | Regional filtering, tech docs |
| [MCPMarket.com](https://mcpmarket.com/) | Commercial/enterprise with pricing |
| [Portkey.ai](https://portkey.ai/mcp-servers) | Enterprise security/compliance |
| [MCPServers.org](https://mcpservers.org/) | User reviews, troubleshooting guides |
| [Cline.bot](https://cline.bot/mcp-marketplace) | Cline AI one-click integration |
| [APITracker.io](https://apitracker.io/mcp-servers) | API version tracking |
| [AIXploria](https://www.aixploria.com/en/list-best-mcp-servers-directory-ai/) | Editorial reviews, use-case guides |
### Evaluation Criteria
When selecting an MCP server:
1. **Maintenance**: Recent commits? Active issues?
2. **Security**: Reviewed code? Known vulnerabilities?
3. **Token cost**: How many tokens does it consume?
4. **Transport**: HTTP (remote) vs stdio (local)?
5. **Trust**: Official vs community vs unknown author?
## Pre-Installation Workflow
**CRITICAL**: Before installing ANY MCP server, follow this workflow:
### 1. Fetch and Read the README
Always retrieve the server's README.md from GitHub or the registry:
```bash
# View README directly
gh repo view owner/repo-name
# Or fetch raw README
curl -s https://raw.githubusercontent.com/owner/repo/main/README.md
```
**Look for**:
- Required environment variables
- Prerequisites (Node 18+, Python 3.10+, API keys)
- Configuration options and defaults
- Usage examples and limitations
- Security considerations
### 2. Check for Deprecations
| Deprecated | Use Instead |
|---------------------------------------|------------------------------------------|
| SSE transport | HTTP or stdio (June 2025 spec) |
| `@modelcontextprotocol/server-github` | `@github/github-mcp-server` (April 2025) |
| OAuth 2.0 for HTTP | OAuth 2.1 required (March 2025 spec) |
### 3. Verify Prerequisites
```bash
# Check Node version (18+ typically required)
node --version
# Check Python version (3.10+ for MCP SDK)
python3 --version
# Check if package exists
npm view @package/server-name
```
### 4. Review Security Implications
Before proceeding, confirm:
- [ ] What filesystem paths can it access?
- [ ] What network requests can it make?
- [ ] What environment variables does it read?
- [ ] Is the source code available and reviewed?
### 5. Install Following README Instructions
Only after completing steps 1-4, install using the README's recommended method.
## Transport Types
| Transport | Use When | Example |
|-----------|-----------------------------|----------------------------------------------------------------------------------|
| **HTTP** | Cloud services, remote APIs | `claude mcp add --transport http notion https://mcp.notion.com/mcp` |
| **stdio** | Local tools, system access | `claude mcp add --transport stdio fs -- npx -y @anthropic/mcp-server-filesystem` |
| **SSE** | Legacy (prefer HTTP) | Deprecated for new implementations |
## Quick Setup Examples
### Claude Code (CLI)
```bash
# Add remote server
claude mcp add --transport http github https://api.githubcopilot.com/mcp/
# Add local server
claude mcp add --transport stdio postgres -- npx -y @modelcontextprotocol/server-postgres
# List servers
claude mcp list
# Remove server
claude mcp remove github
```
### Claude Desktop (JSON)
```json
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_xxx"
}
}
}
}
```
## MCP vs CLI Decision
| Use MCP When | Use CLI When |
|----------------------------------|---------------------------|
| Rich context needed in responses | Simple one-off operations |
| Complex queries across resources | Quick lookups |
| Ongoing session work | Infrequent access |
| Want tool integration | Prefer direct control |
**Token budget matters**: GitHub MCP ~40k tokens. Context7 ~500 tokens. Enable sparingly.
## Security Essentials
**Critical risks** (2025 research: 43% of servers have command injection flaRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.