Skip to Content
Install tiza

Install tiza in your agent

There are three ways to give your agent access to Tiza.

The AI native way

Drop this single line prompt into your agent (your Claude, Cursro, Codex, ChatGPT, etc) — it fetches the full setup instructions automatically and installs the tiza MCP server.

Fetch https://tiza.cc/agent-prompt.txt and follow the instructions.

This is the recommended approach for Claude, Chat GPT, and most hosted agents that can make HTTP requests and support MCP servers.

HTTP API

Query the Tiza search API directly from any HTTP client. See the OpenAPI spec  for full details. Use this method if you develop agents and prefer to use tiza directly hardcoded as a tool instead of via MCP.

curl -X POST https://tiza.cc/api/search \ -H 'content-type: application/json' \ -d '{ "query": "flight booking agent that supports flights from SVQ to SFO", "protocols": ["a2a"], "filters": {}, "limit": 5 }'

Parameters

FieldTypeDescription
querystringNatural language intent to search for
protocolsstring[]Filter by protocol: a2a, mcp, openapi
filtersobjectAdditional facet filters
limitnumberMax results (default: 10)

MCP Server

Manually install the tiza MCP server on your agent. Use this method when the “one prompt” method doesn’t fit your case. The server exposes a search tool your agent can call by intent.

{ "mcpServers": { "tiza-search": { "type": "http", "url": "https://tiza.cc/mcp" } } }

The MCP server follows the Model Context Protocol  spec and works with Claude Desktop, Cursor, and any other MCP-compatible client.