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
9 lines (8 loc) • 411 B
TypeScript
/**
* Barrel file for exporting services.
* This makes it easier to import services from other parts of the application.
*
* Example Usage:
* import { perplexityApiService, PerplexityChatCompletionRequest } from './services';
*/
export { perplexityApiService, PerplexityChatCompletionRequestSchema, type PerplexityChatCompletionRequest, type PerplexityChatCompletionResponse, } from './perplexityApi.js';