@ivotoby/openapi-mcp-server 0.0.1 → 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/LICENSE +21 -0
- package/dist/bundle.js +2985 -7018
- package/package.json +34 -12
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ivotoby/openapi-mcp-server",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "An MCP server that exposes OpenAPI endpoints as resources",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/bundle.js",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "
|
|
10
|
+
"url": "https://github.com/ivo-toby/mcp-openapi-server"
|
|
11
11
|
},
|
|
12
12
|
"bin": {
|
|
13
|
-
"mcp-server-
|
|
13
|
+
"mcp-server-openapi": "./bin/mcp-server.js"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
@@ -18,31 +18,53 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "node build.js && chmod +x bin/mcp-server.js",
|
|
20
20
|
"clean": "rm -rf dist",
|
|
21
|
-
"lint": "eslint src/**/*.ts",
|
|
21
|
+
"lint": "eslint --config eslint.config.js src/**/*.ts",
|
|
22
|
+
"lint:fix": "eslint --fix --config eslint.config.js src/**/*.ts",
|
|
23
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
24
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
22
25
|
"watch": "tsc --watch",
|
|
23
26
|
"typecheck": "tsc --noEmit",
|
|
24
27
|
"prepare": "npm run build",
|
|
25
28
|
"dev": "nodemon --watch src -e ts --exec 'npm run build'",
|
|
26
29
|
"inspect": "node -r dotenv/config ./scripts/inspect.js",
|
|
27
|
-
"inspect-watch": "node ./scripts/inspect-watch.js"
|
|
30
|
+
"inspect-watch": "node ./scripts/inspect-watch.js",
|
|
31
|
+
"start": "node bin/mcp-server.js",
|
|
32
|
+
"test": "vitest run --config vitest.config.ts",
|
|
33
|
+
"test:watch": "vitest watch --config vitest.config.ts"
|
|
28
34
|
},
|
|
29
35
|
"dependencies": {
|
|
30
|
-
"@modelcontextprotocol/sdk": "
|
|
31
|
-
"axios": "^1.
|
|
36
|
+
"@modelcontextprotocol/sdk": "1.11.1",
|
|
37
|
+
"axios": "^1.8.4",
|
|
32
38
|
"openapi-types": "^12.1.3",
|
|
33
39
|
"yargs": "^17.7.2"
|
|
34
40
|
},
|
|
35
41
|
"devDependencies": {
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
42
|
+
"@eslint/js": "^9.19.0",
|
|
43
|
+
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
44
|
+
"@semantic-release/github": "^9.2.6",
|
|
45
|
+
"@semantic-release/npm": "^11.0.3",
|
|
46
|
+
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
47
|
+
"@types/chai": "^4.3.11",
|
|
48
|
+
"@types/mocha": "^10.0.6",
|
|
49
|
+
"@types/node": "^22.13.11",
|
|
50
|
+
"@types/sinon": "^17.0.3",
|
|
38
51
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
39
52
|
"@typescript-eslint/parser": "^6.12.0",
|
|
40
53
|
"dotenv": "^16.4.7",
|
|
41
|
-
"esbuild": "^0.
|
|
42
|
-
"eslint": "^8.
|
|
54
|
+
"esbuild": "^0.25.1",
|
|
55
|
+
"eslint": "^8.57.1",
|
|
56
|
+
"eslint-config-prettier": "^10.1.5",
|
|
57
|
+
"eslint-plugin-perfectionist": "^4.7.0",
|
|
58
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
43
59
|
"jest": "^29.7.0",
|
|
60
|
+
"msw": "^2.7.0",
|
|
44
61
|
"nodemon": "^3.1.7",
|
|
62
|
+
"prettier": "^3.4.2",
|
|
63
|
+
"semantic-release": "^22.0.12",
|
|
64
|
+
"sinon": "^17.0.1",
|
|
45
65
|
"ts-jest": "^29.1.1",
|
|
46
|
-
"typescript": "^5.3.2"
|
|
66
|
+
"typescript": "^5.3.2",
|
|
67
|
+
"typescript-eslint": "^8.22.0",
|
|
68
|
+
"vitest": "^3.1.3"
|
|
47
69
|
}
|
|
48
70
|
}
|