specrun 1.1.0 → 1.2.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 (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
- <h1 >
1
+ <h1 align="center">
2
2
  SpecRun
3
+
4
+ [![Verified on MseeP](https://mseep.ai/badge.svg)](https://mseep.ai/app/ab3b0729-c54e-4359-aed0-606b90995b59)
5
+ ![](https://badge.mcpx.dev?status=on "MCP Enabled")
6
+ <img src="https://badge.mcpx.dev?status=on" title="MCP Enabled"/>
7
+
3
8
  </h1>
4
9
  An MCP server that turns OpenAPI specifications into MCP tools. Scans a folder for OpenAPI spec files and automatically generate corresponding tools. These tools can then be used in any MCP client to interact with the APIs defined by the specs, with built-in support for authentication and server URL management via a simple `.env` file.
5
10
 
@@ -64,7 +69,7 @@ SpecRun also watches the `.env` file and refreshes server URLs and auth config a
64
69
 
65
70
  ### 5️⃣ Add to MCP client configuration
66
71
 
67
- For Claude Desktop or Cursor, add to your MCP configuration:
72
+ Add to your MCP configuration:
68
73
 
69
74
  If installed on your machine:
70
75
 
@@ -111,7 +116,7 @@ The `mcp-npx-node22` script file uses nvm to run specrun with Node.js 22.14.0, e
111
116
  ```bash
112
117
  #!/bin/bash
113
118
  # Set the PATH to include NVM's Node.js v22.14.0 installation
114
- export PATH="/Users/Pavlo_Piga/.nvm/versions/node/v22.14.0/bin:$PATH"
119
+ export PATH="/Users/YOUR_USER_NAME/.nvm/versions/node/v22.14.0/bin:$PATH"
115
120
 
116
121
  # Execute npx with all passed arguments
117
122
  exec npx "$@"
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "specrun",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
+ "mcpName": "io.github.pavelpiha/specrun",
4
5
  "description": "An MCP server that converts OpenAPI specifications to MCP tools - scan a folder for spec files and automatically generate corresponding tools",
5
6
  "main": "dist/index.js",
6
7
  "bin": {
@@ -32,7 +33,7 @@
32
33
  "license": "MIT",
33
34
  "repository": {
34
35
  "type": "git",
35
- "url": "git@github.com:Pavel-Piha/specrun.git"
36
+ "url": "https://github.com/pavelpiha/specrun.git"
36
37
  },
37
38
  "files": [
38
39
  "dist",