The Trustible MCP Server enables external AI Application and Agents to communicate with the Trustible platform. (Learn more about MCP here: https://modelcontextprotocol.io/docs/getting-started/intro).

When the MCP Server is connected, your Agent/Application will be able to perform the actions in the Trustible Platform listed under Available Tools.

Connecting to the Server

The server can be connected to using Header-based Token authentication or via OAuth.

Authentication via Header-based Access Token

This approach is enabled in many developer tools (e.g. Augment, Claude Code), agent development systems (e.g. Azure Foundry) and agent coding libraries (e.g. Langchain).

To connect to the system:

  1. Generate an API token at in the API Developer Hub
    1. The MCP Server will take actions’ in the Trustible platform on behalf of this user
  2. Set-up the MCP Configuration with:
    1. URL: https://app.trustible.ai/mcp
      1. Or your org’s subdomain
    2. Add the header: {"Authorization": "Token {YOUR API TOKEN}"

Examples

Langchain (Python Agent Developer Library)

from langchain.agents import create_agent
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient(
    {
        "trustible": {
            "transport": "streamable_http",
            "url": "<http://app.dev.trustible.ai/mcp>",
            "headers": {
                "Authorization": f"Token <AUTHORIZATION_TOKEN>",
            },
        }
    }
)
agent = create_agent("gpt-5", tools)

Augment in VSCode

Trustible can be added as a ‘Remote Server’ in Settings

image.png

Authentication via OAuth

This industry standard approach is the preferred method of connection for many AI Agents and tools.

To connect to the system: