Parallel Search MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Parallel Search MCPsearch the web for MCP protocol updates"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Parallel Search MCP
An MCP server that brings Parallel web search and URL extraction to Codex and other Model Context Protocol clients.
It exposes two read-only tools:
parallel_searchsearches the web with selectableturbo,basic, andadvancedmodes.parallel_fetchextracts focused excerpts or full Markdown content from up to 20 known URLs.
Both tools return MCP structured content alongside a readable text response, default to a 25,000-character output limit, and retry transient network or HTTP failures up to three attempts.
Requirements
Node.js 18 or newer
A Parallel API key from platform.parallel.ai
An MCP-compatible client
Related MCP server: searxng-mcp
Installation
Install globally from npm:
npm install --global parallel-search-mcpOr clone the repository:
git clone https://github.com/L-Chris/parallel-search-mcp.git
cd parallel-search-mcp
npm ciAPI key
Set the key in the environment that launches your MCP client:
export PARALLEL_API_KEY="your-api-key"Alternatively, save the key at ~/.config/parallel/api_key and restrict access to the file:
mkdir -p ~/.config/parallel
chmod 700 ~/.config/parallel
printf '%s' 'your-api-key' > ~/.config/parallel/api_key
chmod 600 ~/.config/parallel/api_keyPARALLEL_API_KEY takes precedence over the key file. Set PARALLEL_API_KEY_FILE to use a different key-file path.
Never commit an API key to this repository or place one directly in an MCP configuration file.
Codex configuration
Add the following to ~/.codex/config.toml, replacing the path with the absolute path to your clone:
[mcp_servers.parallel-search-mcp]
command = "node"
args = ["/absolute/path/to/parallel-search-mcp/server.mjs"]
env_vars = ["PARALLEL_API_KEY"]For a global npm installation, the executable can be configured directly:
[mcp_servers.parallel-search-mcp]
command = "parallel-search-mcp"
env_vars = ["PARALLEL_API_KEY"]Restart Codex after changing the configuration. You can verify registration with:
codex mcp listTools
parallel_search
Searches the web through the Parallel Search API.
Important inputs:
search_queries: one to five concise search queries; required.objective: a self-contained description of what the search should answer.mode:turbo,basic, oradvanced.max_results: maximum number of results, from 1 to 20.include_domains/exclude_domains: domain filters.after_date: earliest publication date inYYYY-MM-DDform.max_chars_total: total output character limit.
When mode is omitted, Chinese queries use basic; other queries, including Japanese text containing kana, use turbo. Choose advanced explicitly when result quality matters more than latency.
Example input:
{
"objective": "Find recent official Model Context Protocol announcements",
"search_queries": ["official MCP announcements"],
"mode": "advanced",
"include_domains": ["modelcontextprotocol.io"],
"max_results": 5
}parallel_fetch
Extracts relevant content from known URLs through the Parallel Extract API.
Important inputs:
urls: one to twenty URLs; required.objectiveandsearch_queries: focus the extracted excerpts.max_chars_per_result: per-page excerpt limit.full_content: include full Markdown content.full_content_max_chars_per_result: enable and cap full content per page.max_age_seconds,timeout_seconds, anddisable_cache_fallback: fetching controls.
Example input:
{
"urls": ["https://modelcontextprotocol.io/"],
"objective": "Extract the project overview and key concepts",
"max_chars_total": 10000
}Development
Start the stdio MCP server:
npm startRun the test suite:
npm testTests use mocked HTTP responses and do not require a Parallel API key.
Publishing
Copy .env.example to .env, set NPM_TOKEN, and run:
npm run publish:npmThe publishing script loads .env, writes the npm token to a temporary user configuration with restricted permissions, publishes publicly to the official npm registry, and removes the temporary configuration afterward. .env is excluded from both Git and the npm package.
Notes
This is an independent integration and is not an official Parallel product. Use of the upstream APIs is subject to Parallel's terms and pricing.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA production-ready Model Context Protocol server that brings AI-powered web search directly into development environments, providing intelligent search results with proper citations in Claude Desktop, Cursor, or any MCP-compatible client.46023MIT
- FlicenseAqualityAmaintenanceAn MCP server for SearXNG that provides web search capabilities with concise model-visible output while preserving full result payloads in metadata. It supports search, parallel fetching, URL extraction, and research workflows through both local stdio and streamable HTTP transports.7
- Alicense-qualityCmaintenanceA Model Context Protocol server that exposes powerful web search and scraping tools to AI agents and MCP-compatible clients.Apache 2.0
- AlicenseAqualityBmaintenanceAn MCP server that fetches web pages and extracts clean, AI-usable context from them, enabling tools for link discovery, content search, and integrated fetch-and-search operations.571MIT
Related MCP Connectors
Fast, intelligent web search and web crawling. New mcp tool: Exa-code is a context tool for coding
MCP server for Google search results via SERP API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/L-Chris/parallel-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server