1
Get an API Key
Sign up at /signup for a free key (100 calls/day).
2
Add to Claude Desktop
Add a toolkit to your MCP client config. Each toolkit has its own endpoint at /mcp/<name>/.
claude_desktop_config.json
{
"mcpServers": {
"gnist-weather": {
"url": "https://context.gnist.ai/mcp/open-meteo/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Replace open-meteo with any toolkit slug from /toolkits.
3
Use in Cursor
Cursor supports remote MCP servers. Add to .cursor/mcp.json in your project root:
.cursor/mcp.json
{
"mcpServers": {
"gnist-brreg": {
"url": "https://context.gnist.ai/mcp/brreg/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
4
Compose a Toolbelt
Bundle multiple toolkits into one MCP endpoint with /mcp/compose/:
claude_desktop_config.json
{
"mcpServers": {
"gnist-nordic": {
"url": "https://context.gnist.ai/mcp/compose/?toolkits=brreg,ssb,stortinget",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Use the Config Generator to build a config file interactively.