MCP Server
Truee exposes an MCP-compatible server for AI clients that prefer tool calls.
MCP endpoint:
https://api.usetruee.com/mcp
MCP docs:
https://api.usetruee.com/mcp/docs
Authentication uses the same AI company API key:
x-api-key: YOUR_TRUEE_API_KEY
Tools
| Tool | Purpose |
|---|---|
search_businesses | Natural language business search. |
query_businesses | Structured business search. |
get_business | Fetch a full business profile by ID or slug. |
list_categories | List category codes for filtering. |
Example tool call
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "search_businesses",
"arguments": {
"query": "fintech companies in Nigeria",
"country": "NG",
"limit": 10
}
}
}