> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stackone.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect

> The ways to call a connector's actions, from an AI platform or from your own code.

Every connector needs a [connector profile](/gateway/quickstart#setup-connector-profile) and a [linked account](/gateway/quickstart#link-account) first. With an account linked, its actions are ready to use.

Attach them to an [AI platform](#attach-an-ai-platform), or use one of the [protocols and SDKs](#protocols--sdks) that fits your stack. All share the same actions and authentication for simplicity.

## Attach an AI platform

Pick the platform your users already run. Each connects over MCP:

<CardGroup cols={3}>
  <Card title="ChatGPT" icon="https://mintcdn.com/stackone-60/zRAvvofCYLmP9UF6/images/agents/openai-logo.svg?fit=max&auto=format&n=zRAvvofCYLmP9UF6&q=85&s=a38c135695435b960bc6b40052de4ad0" href="/connect/ai-platforms/chatgpt" width="16" height="16" data-path="images/agents/openai-logo.svg" />

  <Card title="Claude Code" icon="https://mintcdn.com/stackone-60/WsmKpuoeBZmio9QO/images/mcp/logos/claude.svg?fit=max&auto=format&n=WsmKpuoeBZmio9QO&q=85&s=404b448b2b3013a55ecf71943aec656f" href="/connect/ai-platforms/claude-code" width="1200" height="1200" data-path="images/mcp/logos/claude.svg" />

  <Card title="Claude Desktop" icon="https://mintcdn.com/stackone-60/WsmKpuoeBZmio9QO/images/mcp/logos/claude.svg?fit=max&auto=format&n=WsmKpuoeBZmio9QO&q=85&s=404b448b2b3013a55ecf71943aec656f" href="/connect/ai-platforms/claude-desktop" width="1200" height="1200" data-path="images/mcp/logos/claude.svg" />

  <Card title="Codex" icon="https://mintcdn.com/stackone-60/zRAvvofCYLmP9UF6/images/agents/openai-logo.svg?fit=max&auto=format&n=zRAvvofCYLmP9UF6&q=85&s=a38c135695435b960bc6b40052de4ad0" href="/connect/ai-platforms/codex" width="16" height="16" data-path="images/agents/openai-logo.svg" />

  <Card title="Cursor" icon="code" href="/connect/ai-platforms/cursor" />

  <Card title="Gemini" icon="google" href="/connect/ai-platforms/gemini" />

  <Card title="Goose" icon="https://mintcdn.com/stackone-60/3C44zDmMwMrJMHXV/images/mcp/logos/goose.png?fit=max&auto=format&n=3C44zDmMwMrJMHXV&q=85&s=09f6d6d96f9aae06c5841d23908946a8" href="/connect/ai-platforms/goose" width="1024" height="1024" data-path="images/mcp/logos/goose.png" />

  <Card title="n8n" icon="https://mintcdn.com/stackone-60/3C44zDmMwMrJMHXV/images/mcp/logos/n8n.png?fit=max&auto=format&n=3C44zDmMwMrJMHXV&q=85&s=9364b633ee3073731b7a7b3d569a2b8a" href="/connect/ai-platforms/n8n" width="1024" height="1024" data-path="images/mcp/logos/n8n.png" />

  <Card title="VS Code" icon="code" href="/connect/ai-platforms/vscode" />
</CardGroup>

## Protocols & SDKs

<CardGroup cols={2}>
  <Card title="MCP" icon="plug" href="/embed/call-actions/mcp">
    Add tools to any MCP client (Claude, Cursor, n8n) using config only, no code.
  </Card>

  <Card title="Agent SDK" icon="code" href="/embed/call-actions/agent-sdk">
    Build a custom agent with typed TypeScript or Python tools for LangChain, CrewAI, OpenAI, and Vercel AI.
  </Card>

  <Card title="A2A" icon="robot" href="/embed/call-actions/agent2agent">
    Orchestrate multiple agents with pre-built agents per integration, which keeps context lean.
  </Card>

  <Card title="RPC/HTTP Request" icon="terminal" href="/embed/call-actions/rpc-http">
    Call actions from a backend or script with no agent or framework.
  </Card>
</CardGroup>

You can mix them, for example MCP for internal tools and the SDK for your product. For a fuller breakdown, see [Call Actions](/embed/call-actions/overview).

## Test your actions

Try a connector's actions before wiring them into your product. Pick the tool that fits what you're checking:

<CardGroup cols={3}>
  <Card title="Playground" icon="message" href="/embed/call-actions/troubleshooting/playground">
    Explore actions with natural language for discovery and prototyping in the dashboard.
  </Card>

  <Card title="Request Tester" icon="flask" href="/embed/call-actions/troubleshooting/request-tester">
    Execute endpoints with structured parameters. Verify connections and debug responses.
  </Card>

  <Card title="Postman" icon="https://mintcdn.com/stackone-60/ukzqjoO9pVfH9ilh/images/mcp/logos/postman.svg?fit=max&auto=format&n=ukzqjoO9pVfH9ilh&q=85&s=b5d9867a85829951d3e50f703021c8a8" href="/embed/call-actions/troubleshooting/postman" width="800" height="800" data-path="images/mcp/logos/postman.svg">
    Test the MCP server with a pre-built collection. Inspect JSON-RPC requests directly.
  </Card>
</CardGroup>
