Read-only Flyte search MCP. Use the search tools to grep Flyte SDK examples, docs examples, and the full llms.txt.
This server is public (no auth required). Examples use the remote streamable-http endpoint.
claude mcp add flyte-mcp-public https://flyte-mcp.apps.demo.hosted.unionai.cloud/flyte-mcp/mcp --transport httpClaude Code MCP docs →# ~/.codex/config.toml
[mcp_servers.flyte-mcp-public]
url = "https://flyte-mcp.apps.demo.hosted.unionai.cloud/flyte-mcp/mcp"Codex CLI MCP docs →// ~/.cursor/mcp.json
{
"mcpServers": {
"flyte-mcp-public": {
"url": "https://flyte-mcp.apps.demo.hosted.unionai.cloud/flyte-mcp/mcp"
}
}
}Cursor MCP docs →// opencode.json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"flyte-mcp-public": {
"type": "remote",
"url": "https://flyte-mcp.apps.demo.hosted.unionai.cloud/flyte-mcp/mcp",
"enabled": true
}
}
}OpenCode MCP docs →# ~/.hermes/config.yaml
mcp_servers:
flyte-mcp-public:
url: "https://flyte-mcp.apps.demo.hosted.unionai.cloud/flyte-mcp/mcp"Hermes MCP docs →| Source | Version | Path | Search tool |
|---|---|---|---|
| flyte-sdk | v2.5.18b0 | /root/flyte-sdk | search_flyte_sdk_examples |
| unionai-examples | d09852bdfeb7848b5d774e4db7b5240cac5b8617 | /root/unionai-examples | search_flyte_docs_examples |
| llms.txt | n/a (unversioned) | /root/llms.txt | search_full_docs |
| Server name | flyte-mcp-public |
|---|---|
| Transport | streamable-http |
| MCP endpoint | https://flyte-mcp.apps.demo.hosted.unionai.cloud/flyte-mcp/mcp |
| Auth required | no |
| Tool groups | search |
| Enabled tool count | 3 |
search_flyte_docs_examples(pattern: str, before_context_lines: int = 5, after_context_lines: int = 5) -> strSearch the bundled Union docs examples for a regex pattern.
Complements `search_flyte_sdk_examples` with the longer-form, documented examples.search_flyte_sdk_examples(pattern: str, before_context_lines: int = 5, after_context_lines: int = 5) -> strSearch the bundled Flyte SDK examples for a regex pattern.
Use this to find working code for an SDK API before writing a task. Returns the
match count per file plus context excerpts from the top 3 files.search_full_docs(pattern: str, before_context_lines: int = 20, after_context_lines: int = 20) -> strSearch the full Flyte/Union documentation text for a regex pattern.
Use this for conceptual questions ("how does caching work?") where the answer is
prose rather than code.