MCPVault
공식AI 에이전트에서 MCP 서버를 검색하고 평가하세요: 5,000개 이상의 서버에 대한 품질 등급, 실시간 검증 상태, 설치 명령어 및 클라이언트 호환성 정보를 제공합니다.
MCPVault MCP(으)로 무엇을 할 수 있나요?
- 디렉토리 검색 — "작동하는 postgres MCP 서버를 찾아줘"라고 요청하여
search_mcp_servers를 키워드, 카테고리 또는 상태 필터와 함께 사용하세요. - 서버 세부 정보 가져오기 — 나열된 모든 슬러그에 대해
get_mcp_server를 통해 등급, 검증 상태, 클라이언트 호환성 및 도구 목록과 같은 전체 메타데이터를 검색하세요. - 설치 명령 가져오기 — "github MCP 서버를 어떻게 설치하나요?"라고 물어
get_install_command를 통해 정확한 설정 명령을 얻으세요. - 새 서버 제출 —
submit_mcp_server로 MCPVault에 목록에 없는 GitHub 저장소를 추가하세요. 이는 MCP 타당성 게이트에 대해 검증합니다.
문서
MCPVault MCP Server
Search, evaluate, and submit MCP servers from your AI agent. Quality grades, live verification status, install commands and client compatibility for 5,000+ MCP servers.
Install
No installation required. Run directly with npx:
npx -y mcpvault-mcp
Or install globally:
npm install -g mcpvault-mcp
Client Configuration
Claude Desktop
Add to claude_desktop_config.json (typically ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"mcpvault": {
"command": "npx",
"args": ["-y", "mcpvault-mcp"]
}
}
}
Claude Code
claude mcp add mcpvault -- npx -y mcpvault-mcp
Cursor
Add to your MCP configuration in Cursor settings:
{
"mcpServers": {
"mcpvault": {
"command": "npx",
"args": ["-y", "mcpvault-mcp"]
}
}
}
Tools
search_mcp_servers
Search the MCPVault directory by keyword, category, or status.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search term, e.g. "postgres", "file system" |
| category | string | No | Filter by category, e.g. "Databases", "DevTools" |
| status | string | No | Filter by status: verified, claimed, or stale |
| limit | number | No | Results to return (default 10, max 30) |
Example prompts:
- "Find me a working postgres MCP server"
- "Search for MCP servers in the DevTools category with status verified"
- "What MCP servers are available for file system access?"
get_mcp_server
Retrieve full details for a specific server by its MCPVault slug.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| slug | string | Yes | MCPVault slug visible in the listing URL: mcpvault.io/servers/<slug> |
Returns: name, description, grade, status, verification date, GitHub repo, stars, license, client compatibility, topics, tool list, and listing URL.
Example prompts:
- "Get details for the github MCP server"
- "What clients does the postgres-mcp server support?"
get_install_command
Get the install command for a specific MCP server.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| slug | string | Yes | MCPVault slug for the server |
Returns the recorded install command and a link to the listing page. If no install command is on record, points to the listing for manual setup instructions.
Example prompts:
- "How do I install the github MCP server?"
- "What is the install command for filesystem-mcp?"
submit_mcp_server
Submit a GitHub repository to MCPVault as a new MCP server listing. If you find an MCP server on GitHub that is not yet in MCPVault, use this tool to add it. The repository is validated against the MCPVault plausibility gate (the repo name, description, or topics must mention "mcp" or "model context protocol"). Rate limited to 5 submissions per client per day.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| repo_url | string | Yes | Full GitHub repository URL, e.g. https://github.com/owner/repo |
Responses:
- Submitted successfully: returns the listing URL and a note that the owner can claim it at mcpvault.io/claim.
- Already listed: returns the existing listing URL.
- Not an MCP server: explains what the plausibility gate checks.
- Rate limited: try again tomorrow.
Example prompts:
- "If you find an MCP server on GitHub that is not in MCPVault, submit it"
- "Submit https://github.com/owner/my-mcp-server to MCPVault"
- "Add this MCP server to MCPVault: https://github.com/owner/repo"
About MCPVault
MCPVault is a curated directory of 5,000+ MCP servers with quality grades and live verification. Every server is graded A through F based on activity, maintenance, and reliability signals. Stale servers are flagged; claimed and verified servers are actively maintained.
Browse at mcpvault.io.
License
MIT. See LICENSE.