mcp-tap 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +100 -0
  3. package/package.json +2 -2
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Felipe Stenzel
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,100 @@
1
+ # mcp-tap
2
+
3
+ **The last MCP server you install by hand.**
4
+
5
+ mcp-tap lives inside your AI assistant. Ask it to find, install, and configure
6
+ any MCP server — by talking to it. No more editing JSON files. No more
7
+ Googling environment variables.
8
+
9
+ > This is a thin Node.js wrapper that delegates to the Python package
10
+ > ([PyPI: mcp-tap](https://pypi.org/project/mcp-tap/)). It lets you use
11
+ > `npx mcp-tap` if you prefer npm-style tooling.
12
+
13
+ ## Install
14
+
15
+ ### Claude Desktop
16
+
17
+ Add to your `claude_desktop_config.json`:
18
+
19
+ ```json
20
+ {
21
+ "mcpServers": {
22
+ "mcp-tap": {
23
+ "command": "npx",
24
+ "args": ["-y", "mcp-tap"]
25
+ }
26
+ }
27
+ }
28
+ ```
29
+
30
+ ### Claude Code
31
+
32
+ ```bash
33
+ claude mcp add mcp-tap -- npx -y mcp-tap
34
+ ```
35
+
36
+ ### Cursor
37
+
38
+ Add to `.cursor/mcp.json`:
39
+
40
+ ```json
41
+ {
42
+ "mcpServers": {
43
+ "mcp-tap": {
44
+ "command": "npx",
45
+ "args": ["-y", "mcp-tap"]
46
+ }
47
+ }
48
+ }
49
+ ```
50
+
51
+ ### Windsurf
52
+
53
+ Add to `~/.codeium/windsurf/mcp_config.json`:
54
+
55
+ ```json
56
+ {
57
+ "mcpServers": {
58
+ "mcp-tap": {
59
+ "command": "npx",
60
+ "args": ["-y", "mcp-tap"]
61
+ }
62
+ }
63
+ }
64
+ ```
65
+
66
+ ## How it works
67
+
68
+ This wrapper resolves the Python runtime in order:
69
+
70
+ 1. **uvx** (preferred) — uv's tool runner, fast and isolated
71
+ 2. **pipx run** — common Python tool runner
72
+ 3. **python -m mcp_tap** — requires prior `pip install mcp-tap`
73
+
74
+ ## What can mcp-tap do?
75
+
76
+ | You say | mcp-tap does |
77
+ |---------|-------------|
78
+ | "Scan my project" | Detects your tech stack, recommends MCP servers |
79
+ | "Find me an MCP for PostgreSQL" | Searches the registry, compares options |
80
+ | "Set it up" | Installs, configures, validates the connection |
81
+ | "Are my servers working?" | Health-checks every server concurrently |
82
+ | "Lock my MCP setup" | Creates `mcp-tap.lock` for reproducible configs |
83
+
84
+ ## 12 Tools
85
+
86
+ `scan_project` · `search_servers` · `configure_server` · `test_connection` ·
87
+ `check_health` · `inspect_server` · `list_installed` · `remove_server` ·
88
+ `verify` · `restore` · `apply_stack`
89
+
90
+ Plus automatic lockfile management on configure/remove.
91
+
92
+ ## Requirements
93
+
94
+ - Python 3.11+ (via [uv](https://docs.astral.sh/uv/), pipx, or system Python)
95
+
96
+ ## Links
97
+
98
+ - **GitHub**: https://github.com/felipestenzel/mcp-tap
99
+ - **PyPI**: https://pypi.org/project/mcp-tap/
100
+ - **License**: MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-tap",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "The last MCP server you install by hand. Discover, install, and configure MCP servers from inside your AI assistant.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -21,7 +21,7 @@
21
21
  "url": "https://github.com/felipestenzel/mcp-tap/issues"
22
22
  },
23
23
  "bin": {
24
- "mcp-tap": "./bin/mcp-tap.js"
24
+ "mcp-tap": "bin/mcp-tap.js"
25
25
  },
26
26
  "files": [
27
27
  "bin/",