Claude Desktop

Claude Desktop supports MCP server integration. For detailed configuration instructions, visit the official documentation.
Configure Claude Desktop to use the Timbr MCP Server by editing the configuration file.
Configuration File Location
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Basic Configuration
{
"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 Environment Variables
{
"mcpServers": {
"timbr": {
"transport": "http",
"url": "https://<your-timbr-server>/timbr/api/mcp/",
"headers": {
"x-api-key": "${TIMBR_API_KEY}"
},
"env": {
"MCP_DEFAULT_ONTOLOGY": "my_ontology"
}
}
}
}