Node.js
Local development
Copy these examples and adapt them to your project. Start with the basic configs, then jump to a recipe.
{ "$schema": "https://raw.githubusercontent.com/himorishige/hatago-hub/main/schemas/config.schema.json", "version": 1, "logLevel": "info", "mcpServers": { "filesystem": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "."] } }}
{ "$schema": "https://raw.githubusercontent.com/himorishige/hatago-hub/main/schemas/config.schema.json", "version": 1, "logLevel": "info", "mcpServers": { "filesystem": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "."], "tags": ["local", "filesystem"] }, "github": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"], "env": { "GITHUB_TOKEN": "${GITHUB_TOKEN}" }, "tags": ["development", "vcs"] }, "openai": { "url": "https://api.openai.com/v1/mcp", "type": "http", "headers": { "Authorization": "Bearer ${OPENAI_API_KEY}" }, "tags": ["production", "ai"] } }}
Node.js
Cloudflare Workers
Docker
Kubernetes