productivity
Modal MCP Integration for Vercel AI SDK
Connect Modal to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Modal to Vercel AI SDK
Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.
Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with
--write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.
Modal MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-modal": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=modal",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=modal --write=deny Why Use KosmoKrator Here
Expose only Modal instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Modal Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Modal integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__modal__modal_list_apps | modal.modal_list_apps | Read | List all Modal apps. Returns app IDs, names, and status details. |
integration__modal__modal_get_app | modal.modal_get_app | Read | Get details for a specific Modal app by ID, including status and metadata. |
integration__modal__modal_list_functions | modal.modal_list_functions | Read | List all functions for a Modal app. Returns function IDs, names, and runtime details. |
integration__modal__modal_list_schedules | modal.modal_list_schedules | Read | List all scheduled functions for a Modal app. Returns schedule IDs, cron expressions, and function details. |
integration__modal__modal_list_volumes | modal.modal_list_volumes | Read | List all Modal volumes. Returns volume IDs, names, and size details. |
integration__modal__modal_list_secrets | modal.modal_list_secrets | Read | List all Modal secrets. Returns secret names and creation dates (values are not exposed). |
integration__modal__modal_get_current_user | modal.modal_get_current_user | Read | Get the current authenticated Modal user information, including name, email, and account details. |