@deventerprisesoftware/scrapi-mcp 0.2.3 → 0.2.5

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/dist/index.js +1 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import { z } from "zod";
8
8
  const PORT = process.env.PORT || 5000;
9
9
  const SCRAPI_API_KEY = process.env.SCRAPI_API_KEY || "00000000-0000-0000-0000-000000000000";
10
10
  const SCRAPI_SERVER_NAME = "ScrAPI MCP Server";
11
- const SCRAPI_SERVER_VERSION = "0.2.3";
11
+ const SCRAPI_SERVER_VERSION = "0.2.4";
12
12
  const app = express();
13
13
  app.use(cors({
14
14
  origin: "*",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deventerprisesoftware/scrapi-mcp",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "MCP server for using ScrAPI to scrape web pages.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -37,15 +37,15 @@
37
37
  "docker:release": "npm run build && npm run docker:build && npm run docker:push"
38
38
  },
39
39
  "dependencies": {
40
- "@modelcontextprotocol/sdk": "^1.25.2",
41
- "cors": "^2.8.5",
40
+ "@modelcontextprotocol/sdk": "^1.26.0",
41
+ "cors": "^2.8.6",
42
42
  "express": "^5.2.1",
43
43
  "zod": "^3.25.76"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/cors": "^2.8.19",
47
47
  "@types/express": "^5.0.6",
48
- "@types/node": "^25.0.6",
48
+ "@types/node": "^25.2.0",
49
49
  "shx": "^0.4.0",
50
50
  "typescript": "^5.9.3"
51
51
  }