Documentation Index
Fetch the complete documentation index at: https://docs.parallel.ai/llms.txt
Use this file to discover all available pages before exploring further.
For AI agents: a documentation index is available at https://docs.parallel.ai/llms.txt. The full text of all docs is at https://docs.parallel.ai/llms-full.txt. You may also fetch any page as Markdown by appending
When building an agent or chat experiences that requires search, deep research, or batch task processing capabilities, it can be a good choice to integrate with our MCPs. When you desire more control over the reasoning and tool descriptions for niche use-cases (if the system prompt isn’t sufficient) or want to limit or simplify the tools, it may be better to use the APIs directly to build your own tools, for example using the AI SDK. Using the MCP-to-AI-SDK is an excellent starting point in that case.
.md to its URL or sending Accept: text/markdown.Authentication
| Server | Default endpoint | API key required? |
|---|---|---|
| Search MCP | https://search.parallel.ai/mcp | No. Free to use without an Authorization header. Pass a Parallel API key as a Bearer token only if you want higher rate limits. OAuth is not available here — clients that do OAuth discovery will not find metadata on this endpoint. |
| Search MCP (OAuth / auth-enforced) | https://search.parallel.ai/mcp-oauth | Yes. Bearer API key or OAuth. Anonymous requests return 401. Use this endpoint if you want OAuth sign-in or enforced auth. |
| Task MCP | https://task-mcp.parallel.ai/mcp | Yes. Either perform the OAuth flow or pass your Parallel API key as a Bearer token. |
- OpenAI Responses API —
headers: { Authorization: "Bearer <YOUR_PARALLEL_API_KEY>" }on the MCP tool. - Anthropic Messages API —
authorization_token: "<YOUR_PARALLEL_API_KEY>"on the MCP server entry.
OpenAI Integration
Search MCP with OpenAI
TheAuthorization header on the MCP tool is optional — the Search MCP is free to use without it. Include a Parallel API key only to unlock higher rate limits.
Task MCP with OpenAI
Anthropic Integration
Search MCP with Anthropic
Theauthorization_token on the MCP server entry is optional — the Search MCP is free to use without it. Include a Parallel API key only to unlock higher rate limits.
Task MCP with Anthropic
Limitations
Context Window Constraints
The Task MCP is designed for smaller parallel tasks and experimentation, constrained by:- Context window size - Large datasets may overflow the available context
- Max output tokens - Results must fit within model output limitations
- Data source size - Initial data should be appropriately sized for the model
Asynchronous Nature
Due to current MCP/LLM client limitations:- Tasks run asynchronously but don’t automatically wait for completion
- Users must explicitly request results in follow-up turns
- Multiple workflow steps require manual progression through conversation turns
Model Requirements
- Search MCP - Works well with smaller models (GPT OSS 20B+)
- Task MCP - Requires larger models with strong reasoning capabilities (e.g. GPT-5, Claude Sonnet 4.5)
- Smaller models may result in degraded output quality for complex tasks