Grafbase Remote MCP
The Grafbase Dashboard, as well as the Grafbase CLI interact with the platform over a GraphQL API. That API is also available as Model Context Protocol server, implemented with the Grafbase Gateway's builtin MCP server.
Since it implements the latest version of the MCP spec, you only need to configure the URL of the server to connect it to your client of choice. Here is what it looks like in Cursor:
{
"mcpServers": {
"grafbase": {
"url": "https://api.grafbase.dev/mcp"
}
}
}
Your client will initiate the login process, just the same as logging in on the dashboard at grafbase.com or with the CLI using grafbase login
. After that, you can ask questions and query data about your graphs, subgraphs, schemas, analytics, schema proposals and more.