MCP Integrations
FlyMyAI agents act in external services through MCP (Model Context Protocol) tools - ready-made bridges that turn an account connection into agent verbs like send email, create a page, list recent issues.
Authentication at a glance
No setup - these run on your FlyMyAI account out of the box.
Click a button in FlyMyAI, authorize in the provider, come back. No secrets to copy.
Generate a token in the provider's dashboard and paste it into FlyMyAI.
Bring your own MCP - Composio, Smithery, Pipedream, Zapier or self-hosted.
Use a connector from code
Every connector here works two ways: attach it to an agent (its actions become agent verbs), or call those actions directly from the SDK - no agent required. Same connection, same single API key.
from flymyai import AgentClient
client = AgentClient(api_key="fly-***")
# 1. Connectors you've already connected (id, slug, is_configured)
for t in client.tools.list():
print(t.id, t.mcp_tool, t.is_configured)
# 2. Or add one from the catalog. mcp_tool is the connector's catalog name -
# the slug in this page's URL, e.g. "sentry" for /mcp/sentry.
# client.tools.available() lists every connector and its slug.
tool = client.tools.create(mcp_tool="sentry")
# OAuth connectors (Sentry, Slack, Google, ...) must be connected once in
# app.flymy.ai before they answer; until then tool.is_configured is False.
# 3. Call any of the connector's actions directly
result = client.tools.call(
tool.id,
action="search_issues",
arguments={"query": "is:unresolved"},
)
print(result)
The full tool lifecycle - catalog, list, create, configure, call, attach to an agent - is documented in Tools & MCP.
Built-in 10
Google Workspace (OAuth) 9
Apps via OAuth 42
API key / token 176
Custom servers ∞
Bring any MCP server - aggregator-hosted (Composio, Smithery, Pipedream, Zapier MCP, Klavis) or self-hosted - through the Add custom MCP dialog. On top of that, 900+ apps come built in via Composio - agents discover them automatically, no wiring required.
What's on each MCP page
- What it can do - the verbs the agent gets after connecting.
- How to get credentials - exact steps with direct links.
- Fields to fill in FlyMyAI - which value goes into which UI field.
- Troubleshooting - the most common setup errors.
Where to connect
In the app, open MCPs & Skills to browse the catalog, or MCP Config to manage connected tools. Every card in the catalog has an i icon - hover it to see a one-line description and jump to the corresponding page in this section.