specrun 1.1.1 → 1.3.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 +7 -2
  2. package/package.json +5 -3
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
 
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "specrun",
3
- "version": "1.1.1",
4
- "description": "An MCP server that converts OpenAPI specifications to MCP tools - scan a folder for spec files and automatically generate corresponding tools",
3
+ "version": "1.3.0",
4
+ "mcpName": "io.github.pavelpiha/specrun",
5
+ "description": "MCP server that converts OpenAPI specs into tools which can query API endpoints",
5
6
  "main": "dist/index.js",
6
7
  "bin": {
7
8
  "specrun": "dist/cli.js"
@@ -13,6 +14,7 @@
13
14
  "dev:watch": "tsx watch src/cli.ts",
14
15
  "start": "node dist/cli.js",
15
16
  "test": "npm run build && node dist/cli.js --help",
17
+ "tag": "git tag v1.3.0 && git push origin --tags",
16
18
  "prepare": "npm run build"
17
19
  },
18
20
  "keywords": [
@@ -32,7 +34,7 @@
32
34
  "license": "MIT",
33
35
  "repository": {
34
36
  "type": "git",
35
- "url": "git@github.com:pavelpiha/specrun.git"
37
+ "url": "https://github.com/pavelpiha/specrun.git"
36
38
  },
37
39
  "files": [
38
40
  "dist",