MCP server setup

Created by Certorix Online, Modified on Mon, 4 May at 9:13 PM by Certorix Online

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 trees
  • get_tree(treeId) – Get full structure of a tree
  • create_tree(metadata, nodes) – Create a tree programmatically
  • update_tree(treeId, ...) – Modify an existing tree
  • publish_tree(treeId) – Publish a tree
  • list_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

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article