stdio-server.json 686 B

1234567891011121314151617181920212223242526
  1. {
  2. "_comment": "Example stdio MCP server configuration for local file system access",
  3. "filesystem": {
  4. "command": "npx",
  5. "args": ["-y", "@modelcontextprotocol/server-filesystem", "${CLAUDE_PROJECT_DIR}"],
  6. "env": {
  7. "LOG_LEVEL": "info"
  8. }
  9. },
  10. "database": {
  11. "command": "${CLAUDE_PLUGIN_ROOT}/servers/db-server.js",
  12. "args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config/db.json"],
  13. "env": {
  14. "DATABASE_URL": "${DATABASE_URL}",
  15. "DB_POOL_SIZE": "10"
  16. }
  17. },
  18. "custom-tools": {
  19. "command": "python",
  20. "args": ["-m", "my_mcp_server", "--port", "8080"],
  21. "env": {
  22. "API_KEY": "${CUSTOM_API_KEY}",
  23. "DEBUG": "false"
  24. }
  25. }
  26. }