MCP Server

MCP Server

MCP Server (Model Context Protocol)

AltiusOne integrates an MCP server that allows AI clients (Claude Desktop, VS Code, Cursor, etc.) to interact with your business data.

What is MCP?

The Model Context Protocol is an open standard that allows language models to access tools and data securely.

Endpoint

The MCP server is available at /mcp/ and supports:

  • JSON-RPC — Standard communication protocol
  • SSE — Server-Sent Events for streaming

Available tools

Tool Description
rechercher_ecritures Search journal entries
consulter_compte Account details with balance
rechercher_clients Search clients and suppliers
explorer_graphe Navigate the relationship graph
rechercher_documents Semantic search in the DMS
generer_rapport Generate accounting reports

Client configuration

Example configuration for Claude Desktop:

{
  "mcpServers": {
    "altiusone": {
      "url": "https://your-instance.altiusone.ch/mcp/",
      "headers": {
        "Authorization": "Bearer <your_jwt_token>"
      }
    }
  }
}

Security

  • MCP access requires a valid JWT token
  • User permissions apply (RBAC)
  • All actions are logged in the audit trail
  • The MCP server follows the same rules as the REST API

Interactions

  • Graph — Relationship graph exploration
  • Accounting — Journal entry and account lookup
  • Documents — Semantic search
  • Core — Authentication and permissions
On this page