ai.router/ai-gateway
Official7 tools370.ai — AI Gateway: Video (Seedance 2.0, Wan, HappyHorse), Image, Speech + 100+ Chat Models
One key, 100+ models — chat with any LLM and generate video, images, speech. Free trial at 370.ai.
Single API key to access 100+ language models and generate video, images, and speech.
Captured live from the server via tools/list.
list_models
List the AI models available on 370.ai (chat / image / video / audio). Free, no billing.
No parameters.
chat
Ask any text/chat model on 370.ai (Claude / GPT / Gemini / DeepSeek / Qwen / ...) and get its reply. Use this when you want a **specific or different** model than your own — e.g. consult Claude while you run on GPT, use a cheaper model for bulk work, or reach a model you don't have direct access to. One key, 100+ models. Call list_models to see the full catalog of model ids. Args: prompt: the user message / question. model: model id to call (see list_models). Empty = a fast cheap default. system: optional system instruction to steer the model. max_tokens: optional cap on output length (omit to let the model decide). temperature: optional sampling temperature 0..2 (omit for the model's default). Returns the model's text reply.
Parameters (5)
- promptstringrequired
- modelstring
- systemstring
- max_tokensany
- temperatureany
generate_image
Generate an image from a text prompt. Use whenever the user wants a picture/illustration/photo created. Args: prompt: description of the image (English works best). size: 1024x1024 (square) / 1024x1536 (portrait) / 1536x1024 (landscape). Returns the generated PNG image.
Parameters (2)
- promptstringrequired
- sizestring
generate_video
Start a text-to-video generation (async). Returns a task_id; poll get_video_status until done. Args: prompt: description of the video. duration: seconds (e.g. 5). resolution: 480p / 720p / 1080p.
Parameters (3)
- promptstringrequired
- durationinteger
- resolutionstring
get_video_status
Check a video generation task. When status=succeeded the result contains the video url.
Parameters (1)
- task_idstringrequired
text_to_speech
Convert text to spoken audio (mp3). Returns a status with byte size.
Parameters (2)
- textstringrequired
- voicestring
transcribe_audio
Transcribe spoken audio (from a public URL) to text.
Parameters (1)
- audio_urlstringrequired
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"ai-gateway": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.router.ai/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.