Connect your AI to Zato documentation via MCP
Your copilot reads the current Zato documentation over MCP and answers your questions from it.
Your AI can read the Zato documentation over MCP, so its answers about development with Zato, its configuration and its architecture come from the current pages instead of training data.
With each question, the copilot searches the documentation in real time and retrieves the exact content it needs before answering.
Set up
Point your AI to this address:
Claude Code
Run this command to add the Zato documentation as an MCP server:
Start Claude Code and ask a question - it searches the documentation and reads the pages it needs:
Claude Web
- Go to your account settings and click Add custom connector

- Set name to Zato Docs
- Set URL to https://zato.io/mcp

- Click Configure

- Let Claude always use all the Zato Docs tools

- Claude now has live access to the Zato documentation

GitHub Copilot
Create .vscode/mcp.json in your project (or add the server to your user settings):
Open the Chat view in agent mode and ask a question:
Codex
Run this command to add the Zato documentation as an MCP server:
Start Codex and ask a question:
Cursor
Create .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):
Open the agent panel and ask a question:
Gemini CLI
Run this command to add the Zato documentation as an MCP server:
Start Gemini CLI and ask a question:
OpenCode
Add the server to opencode.json in your project (or ~/.config/opencode/opencode.json for all projects):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"zato-docs": {
"type": "remote",
"url": "https://zato.io/mcp",
"enabled": true
}
}
}
Start OpenCode and ask a question:
Antigravity
Add the server to ~/.gemini/config/mcp_config.json (or .agents/mcp_config.json in your project) - Antigravity uses serverUrl, not url:
Open the agent panel and ask a question:
Ask a question
Try other questions, for instance:
- "How do I install Zato on Windows? And Mac?"
- "What's the difference between a channel and an outgoing connection?"
- "How to query MS SQL Server?"
- "How do I schedule a service to run every hour?"
- "What security options are available for REST channels?"
The copilot searches the documentation, finds the relevant pages and answers based on what Zato supports.
See also
| Feature | What it does |
|---|---|
| MCP gateways | Expose your own Python services as tools for AI agents |
| Sharing with clients | Give client teams your own gateway's details as one document |
| MCP tutorial | A gateway built and called from Claude Code, end to end |