tru8-mcp
tru8-mcp
MCP server for Tru8 Evidence Research — structured evidence research tools for AI agents.
Submit a claim or URL, get back source-traced evidence organized by tier (primary/reporting/commentary) and type (data/official/news/analysis/opinion/academic), with element decomposition and relationship mapping.
Two ways to connect
Hosted (nothing to install). Point any MCP client that supports remote servers at:
https://api.trueight.com/mcpAuthenticate with your Tru8 API key, sent either as an X-API-Key header or
as Authorization: Bearer. Each request is authenticated on its own, so one
endpoint serves every user without their keys ever meeting.
Local (this package). Runs on your own machine over stdio, which means your API key never leaves it. Use this if you would rather not send a credential through anyone else's infrastructure.
Both serve the identical tools from the identical code — pick whichever suits.
Quick Start
pip install tru8-mcpOr run without installing:
uvx tru8-mcpSet your API key:
export TRU8_API_KEY=tru8_sk_...Create an API key at your Tru8 dashboard under Settings > Developer.
Configuration
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"tru8": {
"command": "tru8-mcp",
"env": {
"TRU8_API_KEY": "tru8_sk_..."
}
}
}
}Cline / Cursor
Add to your MCP settings:
{
"mcpServers": {
"tru8": {
"command": "uvx",
"args": ["tru8-mcp"],
"env": {
"TRU8_API_KEY": "tru8_sk_..."
}
}
}
}From source
git clone https://github.com/SamYatesSmith/tru8-mcp.git
cd tru8-mcp
pip install -e .
tru8-mcpTools
Tool | Description | Typical time |
| Evidence research for a claim or article URL | 15-120s |
| Retrieve completed check with computed analytics | <1s |
| Retrieve raw check data without computed analytics | <1s |
Environment Variables
Variable | Required | Description |
| Yes | API key ( |
| No | API base URL. Default: |
Security
Store API keys in environment variables or a secrets manager. Never hardcode keys in source code. If a key is compromised, revoke it immediately at your dashboard.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SamYatesSmith/tru8-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server