KosmoKrator

marketing

Hootsuite MCP Integration for Vercel AI SDK

Connect Hootsuite to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write Manual OAuth token auth

Connect Hootsuite 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.

Hootsuite MCP Config for Vercel AI SDK

Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.

{
  "mcpServers": {
    "kosmokrator-hootsuite": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=hootsuite",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=hootsuite --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Hootsuite instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Hootsuite Tools Visible to Vercel AI SDK

Vercel AI SDK sees stable MCP tool names generated from the Hootsuite integration catalog.

MCP toolSource functionTypeDescription
integration__hootsuite__hootsuite_list_messages hootsuite.hootsuite_list_messages Read List scheduled and past messages in Hootsuite. Filter by time range, social profiles, and limit. Returns message IDs, text, scheduled send times, and status.
integration__hootsuite__hootsuite_get_message hootsuite.hootsuite_get_message Read Get details of a specific Hootsuite message by its ID. Returns the message text, scheduled send time, social profiles, and delivery status.
integration__hootsuite__hootsuite_create_message hootsuite.hootsuite_create_message Write Schedule a new social media message in Hootsuite. Provide the text content, target social profile IDs, and the scheduled send time.
integration__hootsuite__hootsuite_list_social_profiles hootsuite.hootsuite_list_social_profiles Read List all social media profiles connected to the Hootsuite account. Returns profile IDs, types (e.g., Twitter, Facebook, LinkedIn), and display names.
integration__hootsuite__hootsuite_get_social_profile hootsuite.hootsuite_get_social_profile Read Get details of a specific social media profile in Hootsuite by its ID. Returns profile type, display name, and account metadata.
integration__hootsuite__hootsuite_list_members hootsuite.hootsuite_list_members Read List members of the Hootsuite organization. Returns member IDs, names, emails, and roles. Use limit to control page size.
integration__hootsuite__hootsuite_get_current_user hootsuite.hootsuite_get_current_user Read Get the currently authenticated Hootsuite user profile. Returns the member name, email, and organization info.

Related Hootsuite Pages