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

# AI and developer integrations

> Choose MCP, CLI, Agent Skill, or REST for your SocQ workflow.

# AI and developer integrations

Choose an integration based on how you want to work. All options use the same Capability Registry, authentication, billing, asynchronous tasks, normalized results, and provider failover as the Agent REST API.

| I want to...                                                            | Recommended integration | Start here                                     |
| ----------------------------------------------------------------------- | ----------------------- | ---------------------------------------------- |
| Ask an AI client to collect and analyze data                            | MCP                     | [MCP quickstart](/integrations/mcp)            |
| Teach an agent endpoint selection, cost control, and research workflows | MCP + Agent Skill       | [Agent Skill](/integrations/skill)             |
| Run collections and export data from a terminal                         | CLI                     | [CLI](/integrations/cli)                       |
| Build an application with HTTP requests                                 | REST API                | [API overview](/api-manual/agent-api/overview) |

## Fastest path

For most AI-client users:

1. Set `SOCQ_API_KEY`.
2. Connect to `https://api.socq.ai/mcp`, or run `npx -y @socq/mcp` for a stdio-only client.
3. Ask the client to collect a small dataset and wait for the returned task.

```text theme={"system"}
Collect the latest 20 comments from this YouTube video.
Wait for the task to finish, then return the comments as a table:
https://www.youtube.com/watch?v=VIDEO_ID
```

See [MCP quickstart](/integrations/mcp) for the tool call, task polling, and result shape behind this prompt.

## Integration summary

| Integration | Best for                      | Install or URL                         | Availability                |
| ----------- | ----------------------------- | -------------------------------------- | --------------------------- |
| Remote MCP  | Hosted AI clients             | `https://api.socq.ai/mcp`              | Available                   |
| stdio MCP   | Local-only MCP clients        | `npx -y @socq/mcp`                     | Available                   |
| CLI         | Shell scripts and data export | `npm install -g @socq/cli`             | Package publication pending |
| Agent Skill | Reusable research workflow    | `npx skills add socq-ai/socq-devtools` | Repository install          |

<Info>
  CLI and stdio MCP are local clients, not separately deployed services. The hosted MCP endpoint runs alongside the SocQ Agent API.
</Info>

## Machine-readable sources

* [Capability Catalog](/capability-catalog.json)
* [Agent OpenAPI](/api-manual/agent-api/agent-api.json)
* [llms.txt](/llms.txt)
* [llms-full.txt](/llms-full.txt)
* [llms.json](/llms.json)
