From beeb71b58dd71710c8775440400c7beb77b62771 Mon Sep 17 00:00:00 2001 From: fOuttaMyPaint Date: Tue, 14 Jul 2026 19:13:27 -0400 Subject: [PATCH] chore(release): 0.1.1 First published release of @tmhs/tailscale-mcp. The v0.1.0 tag was consumed by the initial scaffold push before the tool surface landed, so the first npm publish is 0.1.1. Co-Authored-By: Claude Fable 5 Signed-off-by: fOuttaMyPaint --- CHANGELOG.md | 4 ++++ package-lock.json | 4 ++-- package.json | 38 ++++++++++++++++++++++++++++++-------- 3 files changed, 36 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a05d9e..a6543fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package-lock.json b/package-lock.json index 74ad4a9..130a6b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@tmhs/tailscale-mcp", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@tmhs/tailscale-mcp", - "version": "0.1.0", + "version": "0.1.1", "license": "CC-BY-NC-ND-4.0", "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", diff --git a/package.json b/package.json index 53d90f3..5152b66 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,17 @@ { "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", @@ -13,14 +19,30 @@ "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"