Skip to main content

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

ToolPurpose
search_businessesNatural language business search.
query_businessesStructured business search.
get_businessFetch a full business profile by ID or slug.
list_categoriesList 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
}
}
}