Skip to main content

Configuration shape

Use the same server block pattern across MCP clients:
{
  "mcpServers": {
    "evento-public": {
      "command": "node",
      "args": ["/absolute/path/to/evento-public-mcp/dist/index.js"],
      "env": {
        "PUBLIC_API_KEY": "your-evento-api-key",
        "EVENTO_API_BASE_URL": "https://evento.so"
      }
    }
  }
}

Client notes

Add the server block to claude_desktop_config.json, save, and restart Claude Desktop.
Add the same block in Cursor MCP settings and restart Cursor.
Use the same command, args, and env fields where stdio MCP servers are configured.

Best practices

  • Use an absolute path in args
  • Keep PUBLIC_API_KEY in client-local env config
  • Restart the client after config changes

Next steps