From claude-code-dev
Configures MCP (Model Context Protocol) servers for Claude Code to connect to external tools, databases, APIs, and services like Jira, Sentry, PostgreSQL, Figma, Slack via HTTP, SSE, or stdio with authentication.
npx claudepluginhub jpoutrin/product-forge --plugin claude-code-devThis skill uses the workspace's default tool permissions.
This skill helps configure Model Context Protocol (MCP) servers to connect Claude Code to external tools, databases, and APIs.
Manages Model Context Protocol (MCP) servers for Claude Code projects: installs/configures .mcp.json, OAuth remotes, runtime enable/disable, troubleshooting connections.
Guides integration of Model Context Protocol (MCP) servers into Claude Code plugins via .mcp.json or plugin.json for external service tools, with scope management (local, project, user).
Guides configuration and usage of MCP (Model Context Protocol) servers in Claude Code via CLI commands and .mcp.json files, covering HTTP/SSE/stdio transports, scopes, env vars, and 300+ external tools.
Share bugs, ideas, or general feedback.
This skill helps configure Model Context Protocol (MCP) servers to connect Claude Code to external tools, databases, and APIs.
MCP (Model Context Protocol) is an open-source standard for AI-tool integrations. MCP servers give Claude Code access to:
Cloud-based services, most widely supported.
claude mcp add --transport http <name> <url>
# Example: Connect to Notion
claude mcp add --transport http notion https://mcp.notion.com/mcp
# With Bearer token authentication
claude mcp add --transport http secure-api https://api.example.com/mcp \
--header "Authorization: Bearer your-token"
Use HTTP instead where available.
claude mcp add --transport sse <name> <url>
# Example: Connect to Asana
claude mcp add --transport sse asana https://mcp.asana.com/sse
Run as local processes on your machine.
claude mcp add --transport stdio <name> <command> [args...]
# Example: Airtable server
claude mcp add --transport stdio airtable --env AIRTABLE_API_KEY=YOUR_KEY \
-- npx -y airtable-mcp-server
# Example: PostgreSQL database
claude mcp add --transport stdio db -- npx -y @bytebase/dbhub \
--dsn "postgresql://user:pass@localhost:5432/mydb"
Note: The -- separates Claude's flags from the server command.
| Scope | Storage | Use Case |
|---|---|---|
local | ~/.claude.json (project path) | Personal, project-specific |
project | .mcp.json in project root | Team-shared via git |
user | ~/.claude.json (global) | Personal across all projects |
# Add to specific scope
claude mcp add --transport http api --scope project https://api.example.com
# List all configured servers
claude mcp list
# Get details for a specific server
claude mcp get <name>
# Remove a server
claude mcp remove <name>
# Check server status (in Claude Code)
/mcp
For OAuth 2.0 authentication:
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp/mcpPlugins can bundle MCP servers. Create .mcp.json at plugin root:
{
"mcpServers": {
"plugin-server": {
"command": "${CLAUDE_PLUGIN_ROOT}/servers/my-server",
"args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config.json"],
"env": {
"API_KEY": "${API_KEY}"
}
}
}
}
Or inline in plugin.json:
{
"name": "my-plugin",
"mcpServers": {
"plugin-api": {
"type": "http",
"url": "https://api.example.com/mcp"
}
}
}
For team-shared servers, create .mcp.json in project root:
{
"mcpServers": {
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/"
},
"database": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@bytebase/dbhub", "--dsn", "${DATABASE_URL}"]
}
}
}
Supported in .mcp.json:
${VAR} - Value of environment variable${VAR:-default} - Value or default if not setWorks in: command, args, env, url, headers
| Server | Type | Install Command |
|---|---|---|
| GitHub | HTTP | claude mcp add --transport http github https://api.githubcopilot.com/mcp/ |
| Sentry | HTTP | claude mcp add --transport http sentry https://mcp.sentry.dev/mcp |
| Notion | HTTP | claude mcp add --transport http notion https://mcp.notion.com/mcp |
| Postgres | stdio | claude mcp add --transport stdio db -- npx -y @bytebase/dbhub --dsn "..." |
| Filesystem | stdio | claude mcp add --transport stdio fs -- npx -y @modelcontextprotocol/server-filesystem /path |
Type @ to see available resources from MCP servers:
> Analyze @github:issue://123
MCP prompts become slash commands:
> /mcp__github__list_prs
> /mcp__jira__create_issue "Bug title" high
Use cmd /c wrapper for npx:
claude mcp add --transport stdio my-server -- cmd /c npx -y @some/package
Set MAX_MCP_OUTPUT_TOKENS for large outputs:
export MAX_MCP_OUTPUT_TOKENS=50000
claude
Increase startup timeout:
MCP_TIMEOUT=10000 claude
When setting up a new MCP server:
/mcp command