/mcp-server-manager
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.
$ npx -y skills add xiaolai/vmark --skill mcp-server-manager --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/mcp-server-manager
Context preview
The summary Claude sees to decide when to auto-load this skill.
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.
SKILL.md
mcp-server-manager.SKILL.mdname: mcp-server-manager
description: 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.
MCP Server Manager
Workflow
1) **Discover candidate servers**
- Check project `.mcp.json` for existing server configs.
- Check `~/.claude.json` for global MCP servers (Claude Code).
- Scan for MCP-related packages in `package.json` or `Cargo.toml`.
2) **Choose a registration target**
- Project-local: edit `.mcp.json` directly.
- Global (Claude Code): use `claude mcp add` / `claude mcp remove`.
3) **Register the server**
- stdio server:
claude mcp add <name> -- <command> <args...>
- stdio with env:
claude mcp add <name> -e KEY=VALUE -- <command> <args...>
- Or edit `.mcp.json` directly for project-local config.
4) **Verify registration**
- For `.mcp.json`: read the file and confirm the entry exists.
- For global: run `claude mcp list` to verify.
5) **Explain reload requirement**
- MCP servers are loaded at session start; ask the user to restart the session.
Notes
- Infer type from config: `url` key = HTTP, `command`/`args` keys = stdio.
- When multiple sources define the same name, confirm which to use.
- For stdio servers using `npx`, the package downloads when the server first runs.
VMark Example
// .mcp.json
{
"mcpServers": {
"tauri": {
"command": "npx",
"args": ["-y", "@hypothesi/tauri-mcp-server"]
}
}
}Read more
name: mcp-server-manager description: 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.
MCP Server Manager
Workflow
1) **Discover candidate servers**
- Check project `.mcp.json` for existing server configs.
- Check `~/.claude.json` for global MCP servers (Claude Code).
- Scan for MCP-related packages in `package.json` or `Cargo.toml`.
2) **Choose a registration target**
- Project-local: edit `.mcp.json` directly.
- Global (Claude Code): use `claude mcp add` / `claude mcp remove`.
3) **Register the server**
- stdio server:
claude mcp add <name> -- <command> <args...>
- stdio with env:
claude mcp add <name> -e KEY=VALUE -- <command> <args...>
- Or edit `.mcp.json` directly for project-local config.
4) **Verify registration**
- For `.mcp.json`: read the file and confirm the entry exists.
- For global: run `claude mcp list` to verify.
5) **Explain reload requirement**
- MCP servers are loaded at session start; ask the user to restart the session.
Notes
- Infer type from config: `url` key = HTTP, `command`/`args` keys = stdio.
- When multiple sources define the same name, confirm which to use.
- For stdio servers using `npx`, the package downloads when the server first runs.
VMark Example
// .mcp.json
{
"mcpServers": {
"tauri": {
"command": "npx",
"args": ["-y", "@hypothesi/tauri-mcp-server"]
}
}
}The Plain-Text Workspace Where Humans and AI Collaborate Free. Local-first. Format-aware. VMark is the plain-text workspace where humans and AI collaborate.
Repo: xiaolai/vmark
Other skills on vmark.
- /ai-coding-agents
Comprehensive guide for using Codex CLI (OpenAI) and Claude Code CLI (Anthropic) - AI-powered coding agents. Use when orchestrating CLI commands, automating tasks, configuring agents, or troubleshooting issues.
Open skill - /css-design-tdd
Test-driven CSS design system modifications. Run checks before/after CSS changes to verify token usage, variable definitions, fallbacks, and consistency. Use when modifying CSS tokens, fixing design inconsistencies, or auditing CSS architecture.
Open skill - /mcp-dev
Build or update MCP server/client integrations for VMark. Use when configuring MCP servers, adding MCP tools, or updating MCP-related docs and settings.
Open skill - /plan-audit
Audit an implementation against a plan (dev-docs/plans/*). Use when a user asks to check for gaps, logic errors, or missing tests relative to a plan or Work Items.
Open skill - /plan-verify
Verify a completed implementation against a plan by running gates and checking acceptance criteria. Use when the user asks to verify work items or confirm completion.
Open skill - /planning
Create comprehensive implementation plans and write them to plan files. Use when the user asks for a plan, comprehensive plan, systematic workflow design, or wants decisions documented in a plan file.
Open skill

