@ppcantidio/openapi-mcp-server 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +112 -0
  3. package/dist/index.js +20417 -0
  4. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@ppcantidio/openapi-mcp-server",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for querying OpenAPI documentation conversationally",
5
+ "type": "module",
6
+ "bin": {
7
+ "openapi-mcp-server": "./dist/index.js"
8
+ },
9
+ "files": ["dist"],
10
+ "scripts": {
11
+ "dev": "bun run src/index.ts",
12
+ "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm",
13
+ "test": "bun test",
14
+ "lint": "bunx biome check .",
15
+ "lint:fix": "bunx biome check --write .",
16
+ "prepublishOnly": "bun run build"
17
+ },
18
+ "keywords": ["mcp", "openapi", "swagger", "documentation", "ai"],
19
+ "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/ppcantidio/openapi-mcp-server"
23
+ },
24
+ "engines": {
25
+ "node": ">=18"
26
+ },
27
+ "dependencies": {
28
+ "@modelcontextprotocol/sdk": "=1.29.0"
29
+ },
30
+ "devDependencies": {
31
+ "@biomejs/biome": "^1.9.4",
32
+ "bun-types": "^1.3.12",
33
+ "openapi-types": "=12.1.3"
34
+ },
35
+ "trustedDependencies": ["@biomejs/biome"]
36
+ }