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.
Limited to specific tools
Additional assets for this skill
This 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