Agents. Models. Serverless.
Build autonomous AI agents, access any model through a unified API, or deploy your own custom models with serverless GPUs. One platform, pay per use.
Agents tie everything together. Models, MCP and Serverless also work as standalone products - pick what you need, plug them in later. Building a product on top? Read Why FlyMyAI - the whole stack as pure infrastructure.
The whole FlyMyAI cloud is available over MCPAdd it to Claude, Cursor, VS Code or ChatGPT in one click — every model, your agents & 1,100+ tools. Connect →Three products, one platform
- Agents
- Models API
- Serverless
from flymyai import AgentClient
client = AgentClient(api_key="fly-***")
agent = client.agents.create(
name="Research Assistant",
goal="Research AI agents in enterprise and return a short summary "
"with the three strongest use cases.",
# tools=[tool.id, ...] -> attach any of 1,100+ MCP tools by id;
# see /agents/concepts/tools for the catalog + connect flow
)
run = client.runs.create(agent_id=agent.id)
result = client.runs.wait(run.id)
print(result.output)
from flymyai import client
fma = client(apikey="fly-***")
response = fma.predict(
model="flymyai/SDXLTurbo",
payload={"prompt": "A cat in space"}
)
# Any hosted model, one HTTP call - no GPUs, no queues, no infra
curl -X POST https://api.flymy.ai/api/v1/flymyai/SDXLTurbo/predict \
-H "x-api-key: fly-***" \
-F "prompt=A cat in space"
# Private serverless deployments for your own models: app.flymy.ai
Built for production
Autonomous Agents
Build agents that plan, execute tools, and deliver results autonomously. Publish to the marketplace and earn from every run.
Any Model, One API
Image generation, video synthesis, LLMs - unified endpoint. No GPU management, no infrastructure overhead.
Serverless GPU Deployment
Deploy any Python model as a serverless endpoint. Auto-scaling from zero to millions. Pay only when your model runs.
Popular Models
| Model | Type | Speed |
|---|---|---|
| SDXLTurbo | Image Generation | Ultra-fast |
| NanoBananaPro | Image Generation | Fast |
| Flux Dev Fast | Image Generation | Fast |
| Flux Schnell Fast | Image Generation | Ultra-fast |
| Veo 3.1 | Video Generation | Async |
Browse all models at FlyMy.AI.
Get Help
Discord Community
Chat with the team and other developers.
GitHub
Report issues, browse SDKs, and contribute.
Follow Updates
Latest model releases and platform news.
Continue Reading
- Agents Overview - build and monetize autonomous AI agents
- Models Quickstart - generate your first image in under a minute
- Python SDK - full Python client reference
- JavaScript SDK - full JS/TS client reference
- Serverless Guide - deploy custom models with
fma