truss-api-mcp 1.0.0 → 1.0.1
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/mcpize.yaml +17 -0
- package/package.json +12 -2
package/mcpize.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# MCPize manifest - https://mcpize.com
|
|
2
|
+
# Generated by mcpize analyze
|
|
3
|
+
version: 1
|
|
4
|
+
runtime: typescript
|
|
5
|
+
build:
|
|
6
|
+
install: npm install
|
|
7
|
+
command: npm run build
|
|
8
|
+
startCommand:
|
|
9
|
+
type: stdio
|
|
10
|
+
command: node dist/index.js
|
|
11
|
+
credentials:
|
|
12
|
+
- name: TRUSS_LICENSE_KEY
|
|
13
|
+
required: false
|
|
14
|
+
description: License key for Pro features (optional)
|
|
15
|
+
mapping:
|
|
16
|
+
env: TRUSS_LICENSE_KEY
|
|
17
|
+
credentials_mode: per_user
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "truss-api-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "API testing and documentation tools for Claude Code — test endpoints, parse OpenAPI specs, generate clients and tests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,13 +14,23 @@
|
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"mcp",
|
|
17
|
+
"mcp-server",
|
|
18
|
+
"model-context-protocol",
|
|
17
19
|
"api",
|
|
20
|
+
"api-testing",
|
|
18
21
|
"testing",
|
|
19
22
|
"openapi",
|
|
20
23
|
"swagger",
|
|
24
|
+
"rest",
|
|
21
25
|
"documentation",
|
|
22
26
|
"claude",
|
|
23
|
-
"claude-code"
|
|
27
|
+
"claude-code",
|
|
28
|
+
"cursor",
|
|
29
|
+
"ai",
|
|
30
|
+
"ai-agent",
|
|
31
|
+
"agent",
|
|
32
|
+
"http",
|
|
33
|
+
"tool"
|
|
24
34
|
],
|
|
25
35
|
"author": "TRUSS",
|
|
26
36
|
"license": "MIT",
|