@withinfocus/tba-mcp-server 0.3.2 → 1.0.1

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/README.md CHANGED
@@ -11,7 +11,7 @@ A Model Context Protocol (MCP) server that provides access to The Blue Alliance
11
11
 
12
12
  ## Prerequisites
13
13
 
14
- - Node.js 22
14
+ - Node.js 24
15
15
  - The Blue Alliance API key (register at [thebluealliance.com/account](https://www.thebluealliance.com/account))
16
16
 
17
17
  ## Installation
package/dist/index.js CHANGED
@@ -20,7 +20,7 @@ async function runServer() {
20
20
  }
21
21
  server = new Server({
22
22
  name: 'The Blue Alliance MCP Server',
23
- version: '0.3.2',
23
+ version: '1.0.1',
24
24
  }, {
25
25
  capabilities: {
26
26
  tools: {},
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "name": "@withinfocus/tba-mcp-server",
4
4
  "mcpName": "io.github.withinfocus/tba",
5
- "version": "0.3.2",
5
+ "version": "1.0.1",
6
6
  "description": "The Blue Alliance MCP Server",
7
7
  "repository": {
8
8
  "type": "git",
@@ -16,16 +16,16 @@
16
16
  "dependencies": {
17
17
  "@modelcontextprotocol/sdk": "1.24.3",
18
18
  "shx": "0.4.0",
19
- "zod": "4.1.13"
19
+ "zod": "4.2.1"
20
20
  },
21
21
  "devDependencies": {
22
- "@eslint/js": "9.39.1",
22
+ "@eslint/js": "9.39.2",
23
23
  "@jest/globals": "30.2.0",
24
24
  "@modelcontextprotocol/inspector": "0.17.5",
25
25
  "@playwright/test": "1.57.0",
26
26
  "@types/jest": "30.0.0",
27
- "@types/node": "22.19.1",
28
- "eslint": "9.39.1",
27
+ "@types/node": "24.10.4",
28
+ "eslint": "9.39.2",
29
29
  "globals": "16.5.0",
30
30
  "husky": "9.1.7",
31
31
  "jest": "30.2.0",
@@ -34,7 +34,7 @@
34
34
  "prettier": "3.7.4",
35
35
  "ts-jest": "29.4.6",
36
36
  "typescript": "5.9.3",
37
- "typescript-eslint": "8.48.1"
37
+ "typescript-eslint": "8.50.0"
38
38
  },
39
39
  "bin": {
40
40
  "mcp-server-tba": "dist/index.js"
@@ -63,7 +63,7 @@
63
63
  "start:test": "node dist/index.js"
64
64
  },
65
65
  "engines": {
66
- "node": "~22",
67
- "npm": "~10"
66
+ "node": "~24",
67
+ "npm": "~11"
68
68
  }
69
69
  }