Integrations
Search, monitor and generate ads from the AI agents you already use.
TexoAI exposes a real JSON-RPC developer surface. Connect an MCP client or call the API directly with a project-scoped token. This page lists exactly what is available today and what is not — no fabricated install steps.
Delivery methods
A Model Context Protocol server at /api/developer/mcp. Point any MCP client at it with a project token. Available today.
Clients
Each page shows the real setup for that client and its current limitations.
What your agent can do
Six tools are exposed today. Five are read-only; one guarded write tool submits an approved, draft-only static clone job.
Permissions
Every call is checked against the token's scopes and the creator's current project membership.
A real exchange
The endpoint is JSON-RPC 2.0 over HTTPS POST. Initialize, list tools, then call a tool with a Bearer token.
POST /api/developer/mcp
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}{
"jsonrpc": "2.0",
"id": 1,
"result": {
"tools": [
{ "name": "ads.search", "scope": "ads:read", "description": "Search canonical ads in the bound project." },
{ "name": "ads.get", "scope": "ads:read", "description": "Read a canonical ad in the bound project." },
{ "name": "boards.list", "scope": "boards:read", "description": "List private Boards in the bound project." },
{ "name": "monitors.list", "scope": "monitors:read", "description": "List monitors in the bound project." },
{ "name": "jobs.get", "scope": "jobs:read", "description": "Read a generation Job in the bound workspace." },
{ "name": "clones.submit", "scope": "clones:submit", "description": "Submit an approved, draft-only static clone Job." }
]
}
}Security
Credentials are project-scoped, stored as SHA-256 digests, and every call is rate-limited and audited.
Honest limitations
These pages describe only what is implemented today.
Developer resources
Manage credentials in the product and follow what ships next.
Create a token
Open Developer settings, pick a project, choose the scopes you need and copy the one-time token.