MCP server setup
Certorix exposes a Model Context Protocol (MCP) server so AI tools like Claude Desktop, Cursor, and VS Code Copilot can directly access your diagnostic trees and certified facts.
For Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"certorix": {
"command": "npx",
"args": ["-y", "@certorix/mcp-server"],
"env": {
"CERTORIX_API_URL": "https://certorix-api.onrender.com",
"CERTORIX_API_TOKEN": "YOUR_TOKEN_HERE"
}
}
}
}For Cursor / VS Code
Add the same block to .cursor/mcp.json or the VS Code MCP configuration file.
Tools available via MCP
list_trees– List all diagnostic treesget_tree(treeId)– Get full structure of a treecreate_tree(metadata, nodes)– Create a tree programmaticallyupdate_tree(treeId, ...)– Modify an existing treepublish_tree(treeId)– Publish a treelist_facts(q?, status?)– Search certified facts
Getting your API token
Go to MCP / API in the left sidebar. Your personal API token is shown there. Treat it like a password.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article