Token导航 LogoToken导航TokenDH.com
MCP Tap logo
开发工具stdio官方级别未说明来源级核验

MCP Tap

MCP Server

mcp-tap是一款通过对话自动搜索、安装和配置MCP服务器的工具,简化了MCP服务器的管理流程。

工具数

11

提示词数

0

GitHub Stars

0

资源数

0
PythonClaude开发工具Claude DesktopClaudeCursorWindsurf

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

felipestenzel

提供方

felipestenzel

最后核验

2026/5/17 20:21

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

uv run python -m mcp_tap.benchmark.recommendation

详细介绍

mcp-tap

The last MCP server you install by hand.

mcp-tap lives inside your AI assistant. Ask it to find, install, and configure any MCP server — by talking to it. No more editing JSON files. No more Googling environment variables. No more "why won't this connect?"

"Find me an MCP for PostgreSQL."

That's it. mcp-tap searches the registry, installs the package, generates the config, validates the connection — all through conversation.

Before mcp-tap

  1. Google "MCP server for postgres"
  2. Find 4 competing packages, compare stars and last commit dates
  3. Pick one, read the README
  4. Figure out the right command, args, and env values
  5. Manually edit claude_desktop_config.json (or mcp.json, or mcp_config.json...)
  6. Realize you need a POSTGRES_CONNECTION_STRING environment variable
  7. Find your connection string, add it to the config, restart the client
  8. Get "connection refused", debug for 20 minutes
  9. Finally works. Repeat for every server. Repeat for every client.

After mcp-tap

You: "Set up MCP servers for my project."

mcp-tap: I scanned your project and found:
  - PostgreSQL (from docker-compose.yml)
  - Slack (SLACK_BOT_TOKEN in your .env)
  - GitHub (detected .github/ directory)

  I recommend 3 servers. Want me to install them?

You: "Yes, all of them."

mcp-tap: Done. All connections verified. 35 new tools available.

Install

You install mcp-tap once. It installs everything else.

Claude Desktop

Add to your claude_desktop_config.json:

With uvx (recommended):

{
  "mcpServers": {
    "mcp-tap": {
      "command": "uvx",
      "args": ["mcp-tap"]
    }
  }
}

With npx:

{
  "mcpServers": {
    "mcp-tap": {
      "command": "npx",
      "args": ["-y", "mcp-tap"]
    }
  }
}

Claude Code

# With uvx (recommended)
claude mcp add mcp-tap -- uvx mcp-tap

# With npx
claude mcp add mcp-tap -- npx -y mcp-tap

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "mcp-tap": {
      "command": "uvx",
      "args": ["mcp-tap"]
    }
  }
}

Or use npx — replace "command": "uvx", "args": ["mcp-tap"] with "command": "npx", "args": ["-y", "mcp-tap"].

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "mcp-tap": {
      "command": "uvx",
      "args": ["mcp-tap"]
    }
  }
}

Or use npx — replace "command": "uvx", "args": ["mcp-tap"] with "command": "npx", "args": ["-y", "mcp-tap"].

What can it do?

You saymcp-tap does
"Scan my project and recommend MCP servers"Detects your tech stack, shows what's missing
"Find me an MCP for PostgreSQL"Searches the registry, compares options
"Set up the official postgres server"Installs, configures, validates the connection
"Set it up on all my clients"Configures Claude Desktop, Cursor, and Windsurf at once
"What MCP servers do I have?"Lists all configured servers across clients
"Are my MCP servers working?"Health-checks every server concurrently
"Test my postgres connection"Spawns the server, connects, lists available tools
"Remove the slack MCP"Removes from config cleanly

Tools

ToolWhat it does
scan_projectScans your project directory — detects languages, frameworks, databases, CI/CD pipelines — and recommends MCP servers
search_serversSearches the MCP Registry with semantic intent rerank (intent_match_score), maturity scoring, project relevance ranking, and cache fallback metadata during outages
configure_serverInstalls a package (npm/pip/docker), runs a security gate, validates the connection, writes config, and supports dry_run preflight (no writes)
test_connectionSpawns a server process, connects via MCP protocol, and lists its tools. Auto-heals on failure
check_healthTests all configured servers concurrently, detects tool conflicts between servers
inspect_serverFetches a server's README and extracts configuration hints
list_installedShows all configured servers with secrets masked (layered detection: key names, prefixes, high-entropy)
remove_serverRemoves a server from one or all client configs
verifyCompares mcp-tap.lock against actual config — detects drift
restoreRecreates server configs from a lockfile (like npm ci for MCP)
apply_stackInstalls a group of servers from a shareable stack profile

Plus automatic lockfile management on every configure/remove.

Features

  • Project-aware: Scans your codebase — including CI/CD configs (GitHub Actions, GitLab CI) — to recommend servers based on your actual stack
  • Security gate: Blocks suspicious install commands, archived repos, and known-risky patterns before installing
  • Lockfile: mcp-tap.lock tracks exact versions and hashes of all your MCP servers. Reproducible setups across machines
  • Stacks: Shareable server profiles — install a complete Data Science, Web Dev, or DevOps stack in one command
  • Multi-client: Configure Claude Desktop, Claude Code, Cursor, and Windsurf — all at once or individually
  • Auto-healing: Failed connections are automatically diagnosed and fixed when possible
  • Tool conflict detection: Warns when two servers expose overlapping tools that could confuse the LLM
  • Connection validation: Every install is verified with a real MCP connection test
  • Secrets masked: list_installed never exposes environment variable values
  • Recommendation quality gate: Offline benchmark (precision@k, acceptance_rate) keeps recommendation quality stable in CI
  • Production feedback loop (opt-in): Privacy-safe telemetry (recommendations_shown, accepted/rejected/ignored) with version-segmented quality trends
  • Semantic rerank: Broad queries (for example error monitoring) are reranked by intent match, not only popularity
  • Offline-friendly search fallback: Uses recent cached registry results when live providers fail, with explicit staleness metadata
  • Configure preflight: configure_server(dry_run=true) validates install/connectivity without writing client config

Requirements

  • Python 3.11+ with uv (recommended), or
  • Node.js 18+ (the npm package is a thin wrapper that calls the Python package via uvx/pipx)
  • Officially tested in CI on Python 3.11, 3.12, 3.13, and 3.14

Quality Gate

Run the recommendation benchmark locally:

uv run python -m mcp_tap.benchmark.recommendation

Dataset: src/mcp_tap/benchmark/recommendation_dataset_v1.json.

Production Feedback Loop (Opt-In)

Enable telemetry explicitly before collecting production recommendation feedback:

export MCP_TAP_TELEMETRY_OPT_IN=true
export MCP_TAP_TELEMETRY_FILE=.mcp-tap/recommendation_feedback.jsonl

Generate a quality report from collected events:

uv run python -m mcp_tap.benchmark.production_feedback --events .mcp-tap/recommendation_feedback.jsonl --top-k 3

The telemetry payload is privacy-safe by default:

  • project path is stored as hash fingerprint (no raw path)
  • no source code, secrets, or env var values are recorded
  • release trends include drift warnings/failures between versions

License

MIT

目录标签

目录标签

PythonClaude开发工具自动化配置本地部署MCP服务器管理对话式操作

支持客户端

Claude DesktopClaudeCursorWindsurf

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

11

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP