Install
One line. Adds the dep to agents.yml and resolves it.
pakx add mcp parallel/searchRaw metadata
Source-specific install hints as returned by Smithery.
{
"qualifiedName": "parallel/search",
"displayName": "Parallel Web Search",
"description": "Highest accuracy web search for AIs",
"iconUrl": "https://api.smithery.ai/servers/parallel/search/icon",
"remote": true,
"deploymentUrl": "https://search--parallel.run.tools",
"connections": [
{
"type": "http",
"deploymentUrl": "https://search--parallel.run.tools",
"configSchema": {}
}
],
"security": null,
"tools": [
{
"name": "web_search_preview",
"description": "Purpose: Perform web searches and return results in an LLM-friendly format and with parameters tuned for LLMs.\n",
"inputSchema": {
"type": "object",
"properties": {
"objective": {
"type": "string",
"title": "Objective",
"description": "Natural-language description of what the web search is trying to find.\nTry to make the search objective atomic, looking for a specific piece of information. May include guidance about preferred sources or freshness."
},
"search_queries": {
"type": "array",
"items": {
"type": "string"
},
"title": "Search Queries",
"description": "List of keyword search queries of 3-6\n words, which may include search operators. The search queries should be related to the\n objective. Limited to 3 entries of 100 characters each."
}
}
}
},
{
"name": "web_fetch",
"description": "Purpose: Fetch and extract relevant content from\nspecific web URLs.\n\nIdeal Use Cases:\n- Extracting content from specific URLs you've already identified\n- Exploring URLs returned by a web search in greater depth\n",
"inputSchema": {
"type": "object",
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string"
},
"title": "Urls",
"description": "List of URLs to extract content from. Must be valid\nHTTP/HTTPS URLs. Maximum 10 URLs per request."
},
"objective": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Objective",
"default": null,
"description": "Natural-language description of what\ninformation you're looking for from the URLs. Limit to 200 characters."
}
}
}
}
],
"resources": [],
"prompts": []
}