tactus-mcp 0.1.1 → 0.1.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.
- package/CHANGELOG.md +7 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project are documented here. The format is based on
|
|
|
5
5
|
[Semantic Versioning](https://semver.org/). While the major version is `0`, the
|
|
6
6
|
public tool interface may still change between minor versions.
|
|
7
7
|
|
|
8
|
+
## [0.1.2] — 2026-06-13
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- `mcpName` field in `package.json` so the MCP Registry can verify npm package
|
|
12
|
+
ownership. (npm verification reads `mcpName`; the README `mcp-name` marker only
|
|
13
|
+
applies to PyPI/NuGet packages.)
|
|
14
|
+
|
|
8
15
|
## [0.1.1] — 2026-06-13
|
|
9
16
|
|
|
10
17
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tactus-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"mcpName": "io.github.ProjectAILiberation/tactus",
|
|
4
5
|
"description": "A content-agnostic MCP server that exposes intimate hardware control to AI agents by wrapping Buttplug/Intiface.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|