Skip to main content

Cursor

Cursor MCP Integration

Cursor IDE supports MCP servers through its settings. For detailed configuration instructions, visit the official documentation.

Configure via Settings → MCP Servers.

Basic Configuration

Create or edit ~/.cursor/mcp.json (or use Cursor's MCP settings UI):

{
"mcpServers": {
"timbr": {
"transport": "http",
"url": "https://<your-timbr-server>/timbr/api/mcp/",
"headers": {
"x-api-key": "tk_your_api_key_here"
}
}
}
}

With Default Agent

{
"mcpServers": {
"timbr": {
"transport": "http",
"url": "https://<your-timbr-server>/timbr/api/mcp/",
"headers": {
"x-api-key": "tk_your_api_key_here",
"x-agent": "agent_name"
}
}
}
}

With Default Ontology

{
"mcpServers": {
"timbr": {
"transport": "http",
"url": "https://<your-timbr-server>/timbr/api/mcp/",
"headers": {
"x-api-key": "tk_your_api_key_here",
"x-ontology": "my_ontology"
}
}
}
}

Using SSE Transport (Alternative)

If you prefer SSE transport:

{
"mcpServers": {
"timbr": {
"transport": "sse",
"url": "https://<your-timbr-server>/timbr/api/mcp/sse",
"headers": {
"x-api-key": "tk_your_api_key_here",
"x-ontology": "my_ontology"
}
}
}
}