

Starting today, the Parallel Task API[Parallel Task API]($https://parallel.ai/blog/parallel-task-api) supports Tool Calling via MCP Servers in beta. With a single API call, you can now bring your own tools, data sources, and execution logic directly into web research workflows.
With Tool Calling support, developers can choose to expose tools hosted on external MCP-compatible servers and invoke them through the Task API. This allows Parallel agents to reach out to private databases, code execution sandboxes, or proprietary APIs - without custom orchestrators or standalone MCP clients.
12345678910111213141516171819curl -X POST "https://api.parallel.ai/v1/tasks/runs" \
-H "x-api-key: YOUR_API_KEY" \
-H "content-type: application/json" \
-H "parallel-beta: mcp-server-2025-07-17" \
--data '{
"input": "What is the latest in AI research?",
"processor": "lite",
"mcp_servers": [
{
"type": "url",
"url": "https://your_mcp_server",
"name": "your_mcp_server",
"headers": {
"x-api-key": "API_KEY"
}
}
]
}'
``` curl -X POST "https://api.parallel.ai/v1/tasks/runs" \ -H "x-api-key: YOUR_API_KEY" \ -H "content-type: application/json" \ -H "parallel-beta: mcp-server-2025-07-17" \ --data '{ "input": "What is the latest in AI research?", "processor": "lite", "mcp_servers": [ { "type": "url", "url": "https://your_mcp_server", "name": "your_mcp_server", "headers": { "x-api-key": "API_KEY" } } ] }' ```
Connect your preferred MCP server and start integrating your own tools, data sources, and execution logic into Parallel Task API requests. Get started by diving into our documentation[documentation]($https://docs.parallel.ai/features/mcp-tool-call).
By Parallel
July 28, 2025