| 123456789101112131415161718192021222324252627282930 |
- {
- "mcpServers": {
- "gogs": {
- "type": "stdio",
- "command": "node",
- "args": ["/data/gogs-mcp/dist/index.js"],
- "env": {}
- },
- "custom-api": {
- "type": "stdio",
- "command": "node",
- "args": ["/path/to/custom-mcp-server/dist/index.js"],
- "env": {
- "API_KEY": "${CUSTOM_API_KEY}",
- "API_URL": "https://api.example.com"
- }
- },
- "database": {
- "type": "stdio",
- "command": "node",
- "args": ["/path/to/database-mcp/dist/index.js"],
- "env": {
- "DB_HOST": "${DB_HOST}",
- "DB_USER": "${DB_USER}",
- "DB_PASSWORD": "${DB_PASSWORD}",
- "DB_NAME": "myapp"
- }
- }
- }
- }
|