tailscale-mcp 2026.3.15 → 2026.3.16
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.
- package/.mcpregistry_github_token +1 -0
- package/.mcpregistry_registry_token +1 -0
- package/CHANGELOG.md +2 -1
- package/CLAUDE.md +8 -0
- package/README.md +11 -0
- package/package.json +2 -1
- package/server.json +49 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ghu_7si3hZcRXM5oe8ZNBuynQHUWZa54CB4Jt0WS
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NzM1NjU0MjksIm5iZiI6MTc3MzU2NTEyOSwiaWF0IjoxNzczNTY1MTI5LCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6Iml0dW5pZmllZC1idWVjaGVsZWIiLCJwZXJtaXNzaW9ucyI6W3siYWN0aW9uIjoicHVibGlzaCIsInJlc291cmNlIjoiaW8uZ2l0aHViLml0dW5pZmllZC1idWVjaGVsZWIvKiJ9LHsiYWN0aW9uIjoicHVibGlzaCIsInJlc291cmNlIjoiaW8uZ2l0aHViLml0dW5pZmllZC8qIn0seyJhY3Rpb24iOiJwdWJsaXNoIiwicmVzb3VyY2UiOiJpby5naXRodWIuaXR1bmlmaWVkLWlvLyoifV19.h2qb1P7ArenWZNrHffxwHTLH5uujGs_GXTvBxE4nap-yIYRx_LL_OERCx5dLj4FtJfQ5w7Eblyv1udtxMl4cCg","expires_at":1773565429}
|
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,8 @@ This project uses [Calendar Versioning](https://calver.org/) (`YYYY.MM.DD.TS`).
|
|
|
6
6
|
|
|
7
7
|
## v2026.03.15.5
|
|
8
8
|
|
|
9
|
-
- Publish to npm as
|
|
9
|
+
- Publish to npm as `tailscale-mcp`, add `.npmignore`, `bin` entry, expanded keywords (#12)
|
|
10
|
+
- Rename package from `@itunified/mcp-tailscale` to `tailscale-mcp` (npm free org cannot publish public scoped packages)
|
|
10
11
|
- Update package.json version to `2026.3.15`, description aligned with product positioning
|
|
11
12
|
|
|
12
13
|
## v2026.03.15.4
|
package/CLAUDE.md
CHANGED
|
@@ -123,6 +123,14 @@ docs/
|
|
|
123
123
|
4. Push tag: `git push origin --tags`
|
|
124
124
|
5. Create GitHub release: `gh release create v2026.03.13.1 --title "v2026.03.13.1 — <title>" --notes "<release notes>"`
|
|
125
125
|
6. Release notes must list what changed and reference closed issues
|
|
126
|
+
7. **Publish to npm**: `npm run build && npm publish --access public` (package: `tailscale-mcp`)
|
|
127
|
+
|
|
128
|
+
### npm Publishing — MANDATORY
|
|
129
|
+
- npm package name: `tailscale-mcp` (unscoped, published to npmjs.com)
|
|
130
|
+
- **Every release MUST be published to npm** after tagging
|
|
131
|
+
- Ensure `npm run build` succeeds before publishing
|
|
132
|
+
- Verify with `npm view tailscale-mcp version` after publishing
|
|
133
|
+
- Auth: granular access token set via `npm config set //registry.npmjs.org/:_authToken TOKEN`
|
|
126
134
|
|
|
127
135
|
## Git Workflow
|
|
128
136
|
|
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Secure MCP access for private infrastructure over Tailscale**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/tailscale-mcp)
|
|
5
6
|
[](https://github.com/itunified-io/mcp-tailscale/releases)
|
|
6
7
|
[](LICENSE)
|
|
7
8
|
[](https://calver.org)
|
|
@@ -31,7 +32,17 @@ mcp-tailscale is an MCP Gateway Runtime that connects AI agents (Claude, GPT, cu
|
|
|
31
32
|
|
|
32
33
|
## Quick Start
|
|
33
34
|
|
|
35
|
+
### Install from npm
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g tailscale-mcp
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Or clone and build from source
|
|
42
|
+
|
|
34
43
|
```bash
|
|
44
|
+
git clone https://github.com/itunified-io/mcp-tailscale.git
|
|
45
|
+
cd mcp-tailscale
|
|
35
46
|
npm install
|
|
36
47
|
cp .env.example .env # Edit with your Tailscale API key and tailnet name
|
|
37
48
|
npm run build
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailscale-mcp",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "io.github.itunified-io/tailscale",
|
|
4
|
+
"version": "2026.3.16",
|
|
4
5
|
"description": "Secure MCP access for private infrastructure over Tailscale — 48 tools for devices, DNS, ACL, keys, users, webhooks, posture, and tailnet management via Tailscale API v2",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
package/server.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.itunified-io/tailscale",
|
|
4
|
+
"title": "Tailscale MCP Server",
|
|
5
|
+
"description": "Secure MCP access for private infrastructure over Tailscale — 48 tools across 9 domains",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "https://github.com/itunified-io/mcp-tailscale",
|
|
8
|
+
"source": "github"
|
|
9
|
+
},
|
|
10
|
+
"version_detail": {
|
|
11
|
+
"version": "2026.3.15",
|
|
12
|
+
"release_date": "2026-03-15"
|
|
13
|
+
},
|
|
14
|
+
"packages": [
|
|
15
|
+
{
|
|
16
|
+
"registryType": "npm",
|
|
17
|
+
"identifier": "tailscale-mcp",
|
|
18
|
+
"version": "2026.3.15",
|
|
19
|
+
"runtime": "node",
|
|
20
|
+
"runtime_arguments": [],
|
|
21
|
+
"package_arguments": [],
|
|
22
|
+
"environment_variables": [
|
|
23
|
+
{
|
|
24
|
+
"name": "TAILSCALE_API_KEY",
|
|
25
|
+
"description": "Tailscale API key",
|
|
26
|
+
"required": false
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "TAILSCALE_OAUTH_CLIENT_ID",
|
|
30
|
+
"description": "OAuth client ID (alternative to API key)",
|
|
31
|
+
"required": false
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "TAILSCALE_OAUTH_CLIENT_SECRET",
|
|
35
|
+
"description": "OAuth client secret",
|
|
36
|
+
"required": false
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "TAILSCALE_TAILNET",
|
|
40
|
+
"description": "Tailnet name",
|
|
41
|
+
"required": true
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"transport": {
|
|
45
|
+
"type": "stdio"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|