Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to Tailscale MCP will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/).

## [0.1.1] - 2026-07-14

First published release: everything listed under 0.1.0 below ships in this version. (The v0.1.0 tag was consumed by the initial scaffold before the tool surface landed, so the first npm publish is 0.1.1.)

## [0.1.0] - Unreleased

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 30 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,48 @@
{
"name": "@tmhs/tailscale-mcp",
"version": "0.1.0",
"version": "0.1.1",
"description": "MCP server for safe programmatic access to the local Tailscale daemon: tailnet discovery, SSH config generation, port sharing via Serve/Funnel, and latency matrices.",
"type": "module",
"main": "dist/index.js",
"bin": {"tailscale-mcp": "dist/index.js"},
"files": ["dist", "README.md", "LICENSE"],
"bin": {
"tailscale-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build"
},
"publishConfig": {"access": "public"},
"publishConfig": {
"access": "public"
},
"author": "TMHSDigital",
"license": "CC-BY-NC-ND-4.0",
"repository": {"type": "git", "url": "git+https://github.com/TMHSDigital/tailscale-mcp.git"},
"repository": {
"type": "git",
"url": "git+https://github.com/TMHSDigital/tailscale-mcp.git"
},
"homepage": "https://tmhsdigital.github.io/tailscale-mcp/",
"bugs": {"url": "https://github.com/TMHSDigital/tailscale-mcp/issues"},
"keywords": ["mcp", "model-context-protocol", "tailscale", "tailnet", "ssh", "developer-tools"],
"engines": {"node": ">=20.0.0"},
"bugs": {
"url": "https://github.com/TMHSDigital/tailscale-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"tailscale",
"tailnet",
"ssh",
"developer-tools"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.0"
Expand Down
Loading