UNPKG

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

10 lines (9 loc) 454 B
/** * @fileoverview Barrel file for the auth module. * Exports core utilities and middleware strategies for easier imports. * @module src/mcp-server/transports/auth/index */ export { authContext } from "./core/authContext.js"; export { withRequiredScopes } from "./core/authUtils.js"; export { mcpAuthMiddleware as jwtAuthMiddleware } from "./strategies/jwt/jwtMiddleware.js"; export { oauthMiddleware } from "./strategies/oauth/oauthMiddleware.js";