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.
The server can be connected to using Header-based Token authentication or via OAuth.
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:
{"Authorization": "Token {YOUR API TOKEN}"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

This industry standard approach is the preferred method of connection for many AI Agents and tools.
To connect to the system: