productivity
Vultr MCP Integration for Vercel AI SDK
Connect Vultr to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Vultr 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.
Vultr MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-vultr": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=vultr",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=vultr --write=deny Why Use KosmoKrator Here
Expose only Vultr 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.
Vultr Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Vultr integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__vultr__vultr_list_instances | vultr.vultr_list_instances | Read | List all compute instances in the Vultr account. Returns IDs, labels, status, plan, region, and IP addresses. |
integration__vultr__vultr_get_instance | vultr.vultr_get_instance | Read | Get details for a specific Vultr compute instance by ID. Returns full instance information including IP addresses, plan, region, and OS. |
integration__vultr__vultr_list_plans | vultr.vultr_list_plans | Read | List all available hosting plans in Vultr. Returns plan IDs, pricing, vCPU, RAM, disk, and bandwidth details. |
integration__vultr__vultr_list_regions | vultr.vultr_list_regions | Read | List all available data center regions in Vultr. Returns region IDs, city, country, and continent information. |
integration__vultr__vultr_list_snapshots | vultr.vultr_list_snapshots | Read | List all snapshots in the Vultr account. Returns snapshot IDs, descriptions, sizes, creation dates, and status. |
integration__vultr__vultr_list_ssh_keys | vultr.vultr_list_ssh_keys | Read | List all SSH keys in the Vultr account. Returns key IDs, names, and creation dates. |
integration__vultr__vultr_get_current_user | vultr.vultr_get_current_user | Read | Get information about the current authenticated Vultr account, including email, name, and balance. |