@runapi.ai/runway-aleph-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RUNAPI_API_KEY | No | Your RunAPI API key. Alternatively, can be set in ~/.config/runapi/config.json. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| loginA | Authenticate RunAPI by opening a browser PKCE login flow and saving the API key to ~/.config/runapi/config.json. |
| edit_videoC | Create a Runway Aleph task on RunAPI (edit video). Returns a task id, status, and output URLs. |
| get_taskA | Fetch the current status and latest result payload for a runway-aleph task. |
| check_pricingC | Look up RunAPI pricing for the runway-aleph model line. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clear, distinct purpose: login handles authentication, edit_video initiates the main task, get_task retrieves status/results, and check_pricing provides model pricing. There is no overlap or ambiguity among them.
All tool names follow a consistent lowercase_snake_case verb-noun pattern (login, edit_video, get_task, check_pricing). No mixed conventions or deviations exist.
Four tools are well-scoped for a narrow API wrapper covering authentication, the primary edit action, status polling, and pricing lookup. Each tool serves a necessary function without bloat or redundancy.
The core workflow of login, edit_video, and get_task is fully covered, with pricing as a useful extra. Minor gaps exist, such as no cancel or list tasks, but these are not critical for the primary use case.