@renanlido/tia-openness-mcp 1.0.0
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/README.md +207 -0
- package/dist/index.js +32515 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@renanlido/tia-openness-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server (stdio) — thin HTTP client over the TIA Openness `serve` API. Zero Openness/net48 references.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"tia-openness-mcp": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=20"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/renanlido/TIAOpenness.git",
|
|
18
|
+
"directory": "mcp"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"bundle": "node scripts/build.mjs",
|
|
26
|
+
"build": "npm run typecheck && npm run bundle",
|
|
27
|
+
"start": "node dist/index.js",
|
|
28
|
+
"dev": "node --experimental-strip-types src/index.ts",
|
|
29
|
+
"smoke": "node scripts/smoke.mjs",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"prepack": "npm run build",
|
|
32
|
+
"release": "semantic-release"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
36
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
37
|
+
"@semantic-release/git": "^10.0.1",
|
|
38
|
+
"@types/node": "^25.9.2",
|
|
39
|
+
"esbuild": "^0.28.0",
|
|
40
|
+
"semantic-release": "^24.2.0",
|
|
41
|
+
"semantic-release-monorepo": "^8.0.2",
|
|
42
|
+
"typescript": "^6.0.3",
|
|
43
|
+
"vitest": "^3.0.0",
|
|
44
|
+
"zod": "^4.0.0"
|
|
45
|
+
}
|
|
46
|
+
}
|