KosmoKrator

forms

Wufoo MCP Integration for LangGraph

Connect Wufoo to LangGraph through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

6 functions 6 read 0 write API key auth

Connect Wufoo to LangGraph

Run KosmoKrator integration calls from LangGraph nodes while preserving local credentials and permissions.

Use a graph node that calls the KosmoKrator CLI for deterministic steps or an MCP client for dynamic tool selection. The gateway is local, scoped to this integration, and starts with --write=deny so LangGraph can inspect read-capable tools without receiving write access by default.

Wufoo MCP Config for LangGraph

Headless CLI calls fit repeatable graph edges; MCP fits exploratory agent nodes.

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only Wufoo 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.

Wufoo Tools Visible to LangGraph

LangGraph sees stable MCP tool names generated from the Wufoo integration catalog.

MCP toolSource functionTypeDescription
integration__wufoo__wufoo_get_current_user wufoo.wufoo_get_current_user Read Get the authenticated Wufoo user's profile. Returns account details such as name, email, and organization.
integration__wufoo__wufoo_get_entry wufoo.wufoo_get_entry Read Get a single Wufoo form entry by its identifier. Returns all field values and submission metadata for the entry.
integration__wufoo__wufoo_get_form wufoo.wufoo_get_form Read Get details for a specific Wufoo form by its identifier. Returns the full form definition including fields, settings, and metadata.
integration__wufoo__wufoo_list_entries wufoo.wufoo_list_entries Read List entries submitted to a Wufoo form. Supports pagination and optional filters to narrow results. Use the page and pageSize parameters to paginate through large result sets.
integration__wufoo__wufoo_list_forms wufoo.wufoo_list_forms Read List all forms in your Wufoo account. Returns form identifiers, names, descriptions, and metadata that can be used with other Wufoo tools.
integration__wufoo__wufoo_list_reports wufoo.wufoo_list_reports Read List all reports in your Wufoo account. Returns report identifiers, names, descriptions, and the forms they are associated with.

Related Wufoo Pages