MCP-researcher Server
Perplexity MCP 서버
Perplexity의 전문 AI 모델로 구동되는 지능형 연구 보조 도구입니다. 자동 쿼리 복잡성 감지 기능을 통해 최적의 결과를 위해 가장 적합한 모델로 요청을 라우팅합니다. 공식 서버와 달리 모든 작업에 대한 검색 기능을 제공합니다.
도구
간단한 참고 사항: Deep Research 도구는 cline과 같은 일부 도구에서는 시간 초과가 발생하지만, cursor와 같은 다른 도구에서는 구현 방식의 차이로 인해 시간 초과가 발생하지 않습니다. 하지만 이 도구가 그 문제를 보완하는 이유는 다음과 같습니다.
1. 검색(Sonar Pro)
간단한 질문과 기본 정보 조회를 위한 빠른 검색입니다. 간결하고 직접적인 답변이 필요한 간단한 질문에 가장 적합합니다.
지엑스피1
2. Reason (Sonar Reasoning Pro)
상세 분석이 필요한 복잡하고 여러 단계로 구성된 작업을 처리합니다. 설명, 비교 및 문제 해결에 적합합니다.
const result = await use_mcp_tool({
server_name: "perplexity",
tool_name: "reason",
arguments: {
query: "Compare and contrast REST and GraphQL APIs, explaining their pros and cons",
force_model: false // Optional: force using this model even if query seems simple
}
});3. 심층 연구(소나 심층 연구)
포괄적인 조사를 수행하고 상세 보고서를 생성합니다. 복잡한 주제에 대한 심층 분석에 이상적입니다.
const result = await use_mcp_tool({
server_name: "perplexity",
tool_name: "deep_research",
arguments: {
query: "The impact of quantum computing on cryptography",
focus_areas: [
"Post-quantum cryptographic algorithms",
"Timeline for quantum threats",
"Practical mitigation strategies"
],
force_model: false // Optional: force using this model even if query seems simple
}
});Related MCP server: github-manager MCP Server
지능형 모델 선택
서버는 자동으로 쿼리 복잡성을 분석하여 가장 적합한 모델로 요청을 라우팅합니다.
간단한 쿼리 → Sonar Pro
기본 정보 조회
간단한 질문
간단한 사실
복잡한 쿼리 → Sonar Reasoning Pro
어떻게/왜 질문
비교
단계별 설명
문제 해결 과제
연구 질문 → 소나 심층 연구
심층 분석
포괄적인 연구
자세한 조사
다면적인 주제
모든 도구의 인수에서 force_model: true 사용하여 자동 선택을 재정의할 수 있습니다.
설정
필수 조건
Node.js ( nodejs.org 에서)
Perplexity API 키( perplexity.ai/settings/api 에서)
어딘가에 저장소를 복제하세요
MCP 설정 구성
MCP 설정 파일에 추가하세요(위치는 플랫폼마다 다름):
{
"mcpServers": {
"perplexity": {
"command": "node",
"args": ["/path/to/perplexity-server/build/index.js"],
"env": {
"PERPLEXITY_API_KEY": "YOUR_API_KEY_HERE"
},
"disabled": false,
"autoApprove": []
}
}
}또는 NPX를 사용하면 로컬에 설치하지 않아도 됩니다(macOS에 권장):
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": [
"-y",
"perplexity-mcp"
],
"env": {
"PERPLEXITY_API_KEY": "your_api_key"
}
}
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceThis TypeScript-based MCP server enables users to manage and summarize text notes, providing tools for note creation and summarization prompts.3,86010MIT
- Alicense-quality-maintenanceThis TypeScript-based MCP server enables users to manage a simple notes system with capabilities to create and summarize notes through structured prompts and resources.1
- Alicense-qualityDmaintenanceThis TypeScript-based server implements a simple notes system, allowing users to create and manage text notes and generate summaries, showcasing core MCP concepts.8816Apache 2.0
- Alicense-qualityDmaintenanceThis TypeScript-based MCP server allows users to manage a simple notes system through creating and summarizing text notes using Model Context Protocol (MCP).1,2998MIT
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DaInfernalCoder/perplexity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server