mcp-server-manager
Original:🇺🇸 English
Translated
1 scripts
Discover, register, and verify MCP servers. Use when a user asks to connect/add/install/remove an MCP server, or when you need to manage project MCP configuration.
2installs
Sourcexiaolai/vmark
Added on
NPX Install
npx skill4agent add xiaolai/vmark mcp-server-managerTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →MCP Server Manager
Workflow
-
Discover candidate servers
- Check project for existing server configs.
.mcp.json - Check for global MCP servers (Claude Code).
~/.claude.json - Scan for MCP-related packages in or
package.json.Cargo.toml
- Check project
-
Choose a registration target
- Project-local: edit directly.
.mcp.json - Global (Claude Code): use /
claude mcp add.claude mcp remove
- Project-local: edit
-
Register the server
- stdio server:
bash
claude mcp add <name> -- <command> <args...> - stdio with env:
bash
claude mcp add <name> -e KEY=VALUE -- <command> <args...> - Or edit directly for project-local config.
.mcp.json
- stdio server:
-
Verify registration
- For : read the file and confirm the entry exists.
.mcp.json - For global: run to verify.
claude mcp list
- For
-
Explain reload requirement
- MCP servers are loaded at session start; ask the user to restart the session.
Notes
- Infer type from config: key = HTTP,
url/commandkeys = stdio.args - When multiple sources define the same name, confirm which to use.
- For stdio servers using , the package downloads when the server first runs.
npx
VMark Example
json
// .mcp.json
{
"mcpServers": {
"tauri": {
"command": "npx",
"args": ["-y", "@hypothesi/tauri-mcp-server"]
}
}
}