UNPKG

noodle-perplexity-mcp

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) 469 B
/** * @fileoverview Handles registration and error handling for the `perplexity_deep_research` tool. * @module src/mcp-server/tools/perplexityDeepResearch/registration */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Registers the 'perplexity_deep_research' tool with the MCP server instance. * @param server - The MCP server instance. */ export declare const registerPerplexityDeepResearchTool: (server: McpServer) => Promise<void>;