Manage .mcp.json MCP server configurations. Use when configuring MCP servers, adding server entries, managing MCP config files, or when user mentions .mcp.json, MCP server setup, server configuration.
/plugin marketplace add vanman2024/dev-lifecycle-marketplace/plugin install foundation@dev-lifecycle-marketplaceThis skill is limited to using the following tools:
examples/setup-postman.shscripts/README.mdscripts/add-mcp-server.shtemplates/fastmcp-config-template.jsontemplates/mcp-cloud-template.jsontemplates/mcp-config-template.jsontemplates/mcp-http-template.jsontemplates/mcp-stdio-python-template.jsontemplates/mcp-stdio-uv-template.jsonThis skill manages .mcp.json files for MCP server configuration.
Add Server Entry
scripts/add-mcp-server.sh <server-name> <command> <args...>.mcp.json with new server configurationConfigure Environment Variables
scripts/set-server-env.sh <server-name> <VAR=value>List Servers
scripts/list-mcp-servers.shRemove Server
scripts/remove-mcp-server.sh <server-name>Validate Config
scripts/validate-mcp-config.sh.mcp.json structure and server definitionsscripts/add-mcp-server.sh - Add new MCP server to configscripts/remove-mcp-server.sh - Remove server from configscripts/list-mcp-servers.sh - List all configured serversscripts/set-server-env.sh - Set environment variables for serverscripts/validate-mcp-config.sh - Validate .mcp.json structuretemplates/fastmcp-config-template.json - fastmcp.json for FastMCP Cloud deploymenttemplates/mcp-stdio-python-template.json - .mcp.json for Python commandtemplates/mcp-stdio-uv-template.json - .mcp.json for UV runnertemplates/mcp-config-template.json - Generic .mcp.json templatetemplates/mcp-http-template.json - .mcp.json for HTTP transporttemplates/mcp-cloud-template.json - .mcp.json for FastMCP CloudExample 1: Add Postman MCP Server
# Add Postman server
./scripts/add-mcp-server.sh postman npx -y @executeautomation/postman-mcp-server
# Set API key
./scripts/set-server-env.sh postman POSTMAN_API_KEY="\${POSTMAN_API_KEY}"
Example 2: Manage Servers
# List all servers
./scripts/list-mcp-servers.sh
# Remove a server
./scripts/remove-mcp-server.sh old-server
# Validate configuration
./scripts/validate-mcp-config.sh
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.