Skip to main content

MCP Server

At a glance

The MCP (Model Context Protocol) server lets you control Ontologie from your AI clients — Claude Desktop, VS Code, Cursor, or any compatible client. You can query your ontology, run workflows, search documents, and manipulate data directly from your usual AI interface.

Example: from Claude Desktop, ask "What are the active suppliers in my ontology?" and the agent queries your data directly via MCP, without opening the application.

Video tutorial — Connect MCP to Claude Code

What you will do

  • Create an API key with the MCP preset
  • Configure your AI client to connect to Ontologie
  • Use MCP tools to interact with your data

Key vocabulary

TermMeaning
MCPModel Context Protocol — an open standard for connecting AI models to data sources and tools.
ToolAn action the AI client can execute (search, create entity, run workflow, etc.).
ResourceReadable content exposed by the server (ontology schema, dashboard list, etc.).
PromptA pre-configured query template for common use cases.

Before you start

  1. Have an API key with the MCP preset (see API Keys)
  2. Have an MCP client installed

Configuration by client

Claude Desktop

Open the Claude Desktop configuration file (claude_desktop_config.json) and add:

{
"mcpServers": {
"ontologie": {
"url": "https://api.ontologie-growthsystemes.com/mcp/sse",
"headers": {
"X-API-Key": "df_YOUR_MCP_KEY",
"x-workspace-id": "YOUR_WORKSPACE_ID"
}
}
}
}

VS Code (Copilot MCP extension)

Add to your VS Code settings.json:

{
"mcp": {
"servers": {
"ontologie": {
"url": "https://api.ontologie-growthsystemes.com/mcp/sse",
"headers": {
"X-API-Key": "df_YOUR_MCP_KEY",
"x-workspace-id": "YOUR_WORKSPACE_ID"
}
}
}
}
}

Cursor

Add in Cursor's MCP configuration (Settings > MCP Servers):

{
"ontologie": {
"url": "https://api.ontologie-growthsystemes.com/mcp/sse",
"headers": {
"X-API-Key": "df_YOUR_MCP_KEY",
"x-workspace-id": "YOUR_WORKSPACE_ID"
}
}
}

Tip
Store your API key in an environment variable rather than in plaintext in the configuration file.

Available tools

The MCP server exposes tools across 11 categories:

CategoryExample toolsUsage
OntologyList entities, create node, update propertiesManipulate your data model
WorkflowList workflows, trigger executionAutomate processes
AgentInvoke the agent, view sessionsAsk questions in natural language
KnowledgeSearch documents, importLeverage your knowledge base
Live DataList sources, view streamsAccess real-time data
CalendarCreate event, list eventsManage your calendar
DashboardView statistics, KPIsTrack your metrics
SpreadsheetsRead and write to spreadsheetsManipulate tabular data
BundlesManage configuration packsDeploy configurations
AdminManage users, permissionsAdminister your workspace
GovernanceApprovals, classifications, data qualityControl and audit

Scopes and permissions

MCP tools require specific scopes on your API key:

ScopeAccess
mcp.readRead-only (list, search, view)
mcp.writeWrite (create, update, delete)
mcp.workflow.executeTrigger workflow executions
mcp.agent.executeInvoke the AI agent

The MCP preset on the API Keys page automatically configures the recommended scopes.

Expected result

Your AI client is connected to Ontologie. You can query your data, run workflows, and search documents directly from Claude Desktop, VS Code, or Cursor.

See also

What's new