perplexity-mcp-server
Version:
A Perplexity API Model Context Protocol (MCP) server that unlocks Perplexity's search-augmented AI capabilities for LLM agents. Features robust error handling, secure input validation, and transparent reasoning with the showThinking parameter. Built with
11 lines (10 loc) • 443 B
TypeScript
/**
* @fileoverview Handles registration and error handling for the `perplexity_search` tool.
* @module src/mcp-server/tools/perplexitySearch/registration
*/
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
* Registers the 'perplexity_search' tool with the MCP server instance.
* @param server - The MCP server instance.
*/
export declare const registerPerplexitySearchTool: (server: McpServer) => Promise<void>;