From mcp-manager
Add a new MCP server to your Claude Code configuration. Use this to install an MCP server, configure a new MCP server, set up MCP, register an MCP server, or connect a new tool server.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mcp-manager:addThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add a new MCP server to the Claude Code configuration.
Add a new MCP server to the Claude Code configuration.
~/.claude.json under mcpServers. This is NOT ~/.cursor/mcp.json..mcp.json at the project root.Check if the MCP Manager server is running:
curl -s --max-time 2 http://localhost:4111/api/health
If the server is NOT running, start it:
cd "$CLAUDE_PLUGIN_ROOT" && nohup node server/index.js > ~/.mcp-manager.log 2>&1 &
sleep 2
Gather the required information from the user if not already provided:
"global" or the full absolute workspace path (e.g., "/Users/me/my-project") for project scope. Do NOT use the string "project". Default to "global" unless the user specifies a project.Add the server:
curl -s -X POST http://localhost:4111/api/servers \
-H "Content-Type: application/json" \
-d '{
"name": "<NAME>",
"scope": "<SCOPE>",
"config": {
"type": "<TYPE>",
"command": "<COMMAND>",
"args": ["<ARG1>", "<ARG2>"]
}
}'
For HTTP type, use "url" instead of "command" and "args".
Confirm the server was added successfully. Mention which file was modified:
~/.claude.json.mcp.json in the project rootRemind the user to restart their Claude Code session to activate it.
npx claudepluginhub sanjibdevnathlabs/claude-plugins --plugin mcp-managerConfigures MCP servers for Claude Code at project or user scope with best practices to prevent context pollution. Checks status, adds/removes servers via .mcp.json or ~/.claude.json.
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.
Guides integration of Model Context Protocol (MCP) servers into Claude Code plugins via .mcp.json or plugin.json. Covers stdio, SSE, and HTTP server types.