Perplexity MCP server backed by the Polza.ai chat completions API.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-ivanantigravity-lgtm-perplexity-polza-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Perplexity MCP server backed by the Polza.ai chat completions API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
The official Python SDK for Model Context Protocol servers and clients
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.ivanantigravity-lgtm/perplexity-polza-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
mcp-name: io.github.ivanantigravity-lgtm/perplexity-polza-mcp-server
MCP сервер для Claude Desktop и Claude Code, который ходит в модели Perplexity (Sonar, Sonar Pro, Sonar Reasoning, Sonar Deep Research) через агрегатор Polza.ai.
perplexity_model_guide — шпаргалка по выбору модели под задачуperplexity_ask — обычный вопрос в Perplexityperplexity_research — более глубокий ресёрч с веб-поискомlist_perplexity_models — список доступных perplexity/* моделей из каталога PolzaClaude Desktop или Claude Code (или любой другой MCP-клиент)uv (ставится одной командой, см. ниже)POLZA_AI_API_KEY — ключ берётся на polza.ai/dashboard/api-keysПоставить uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
Это самый простой путь: ничего клонировать не надо, uvx сам скачает пакет из PyPI.
Создай файл .mcp.json в корне своего проекта:
{
"mcpServers": {
"perplexity-polza": {
"command": "uvx",
"args": ["perplexity-polza-mcp-server@latest"],
"env": {
"POLZA_AI_API_KEY": "your-polza-api-key-here"
}
}
}
}
Перезапусти Claude Code — готово.
Открой файл ~/Library/Application Support/Claude/claude_desktop_config.json и добавь:
{
"mcpServers": {
"perplexity-polza": {
"command": "uvx",
"args": ["perplexity-polza-mcp-server@latest"],
"env": {
"POLZA_AI_API_KEY": "your-polza-api-key-here"
}
}
}
}
Перезапусти Claude Desktop.
Файл: %APPDATA%\Claude\claude_desktop_config.json. Содержимое такое же, как на macOS.
После перезапуска Claude попроси:
Покажи доступные модели Perplexity через polza
Claude должен вызвать tool list_perplexity_models и вернуть список.
Sonar — быстрый поиск + ответ. Новости, факты, Q&A, короткие суммаризации.Sonar Pro — плотнее структура, сравнения, follow-up вопросы.Sonar Pro Search — глубже поиск, больше поисковых шагов.Sonar Reasoning Pro — не просто найти, а разобрать и сделать вывод.Sonar Deep Research — полноценный ресёрч, market scan, длинный отчёт.Переключить дефолтную модель можно через переменные окружения PERPLEXITY_MODEL и PERPLEXITY_RESEARCH_MODEL — полный список ниже.
| Переменная | Обязательная | По умолчанию | Описание |
|---|---|---|---|
POLZA_AI_API_KEY | да | — | Ключ с polza.ai |
POLZA_BASE_URL | нет | https://polza.ai/api/v1 | Base URL для chat completions (с /v1 — это ожидаемо, endpoint OpenAI-совместим) |
PERPLEXITY_MODEL | нет | perplexity/sonar | Модель для perplexity_ask |
PERPLEXITY_RESEARCH_MODEL | нет | perplexity/sonar-deep-research | Модель для perplexity_research |
LOG_LEVEL | нет | INFO | — |
git clone https://github.com/ivanantigravity-lgtm/perplexity-polza-mcp-server.git
cd perplexity-polza-mcp-server
uv sync
POLZA_AI_API_KEY=your_key uv run python -m perplexity_polza_mcp_server.server
Для локального подключения из source в Claude:
{
"mcpServers": {
"perplexity-polza-local": {
"command": "uv",
"args": ["run", "python", "-m", "perplexity_polza_mcp_server.server"],
"cwd": "/absolute/path/to/perplexity-polza-mcp-server",
"env": {
"POLZA_AI_API_KEY": "your-polza-api-key-here"
}
}
}
}
POST https://polza.ai/api/v1/chat/completions (OpenAI-совместимый формат)GET https://polza.ai/api/v1/models/catalogpyproject.toml — метаданные пакета и entry points