-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@spec2tools/stdio-mcp",
"version": "0.2.1",
"description": "MCP server that exposes OpenAPI endpoints as tools via stdio transport",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"spec2tools-mcp": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"openapi",
"mcp",
"model-context-protocol",
"ai",
"agent",
"tools",
"stdio"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CahidArda/spec2tools.git",
"directory": "packages/stdio-mcp"
},
"dependencies": {
"@ai-sdk/mcp": "^1.0.21",
"@modelcontextprotocol/sdk": "^1.0.0",
"@spec2tools/core": "workspace:*",
"ai": "^6.0.68",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}