@withinfocus/tba-mcp-server 0.2.1 → 0.2.3
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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ npm install -g @withinfocus/tba-mcp-server
|
|
|
27
27
|
```bash
|
|
28
28
|
git clone https://github.com/withinfocus/tba-mcp-server.git
|
|
29
29
|
cd tba-mcp-server
|
|
30
|
-
npm
|
|
30
|
+
npm ci
|
|
31
31
|
npm run build
|
|
32
32
|
```
|
|
33
33
|
|
|
@@ -422,7 +422,7 @@ npm run lint:fix
|
|
|
422
422
|
|
|
423
423
|
```bash
|
|
424
424
|
# Install dependencies
|
|
425
|
-
npm
|
|
425
|
+
npm ci
|
|
426
426
|
|
|
427
427
|
# Run unit tests in watch mode during development
|
|
428
428
|
npm run test:watch
|
package/dist/index.js
CHANGED
|
@@ -443,7 +443,7 @@ async function runServer() {
|
|
|
443
443
|
console.error('The Blue Alliance MCP Server starting ...');
|
|
444
444
|
const server = new Server({
|
|
445
445
|
name: 'The Blue Alliance MCP Server',
|
|
446
|
-
version: '0.2.
|
|
446
|
+
version: '0.2.2',
|
|
447
447
|
}, {
|
|
448
448
|
capabilities: {
|
|
449
449
|
tools: {},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@withinfocus/tba-mcp-server",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.3",
|
|
5
5
|
"description": "The Blue Alliance MCP Server",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@modelcontextprotocol/sdk": "1.17.3",
|
|
17
17
|
"shx": "0.4.0",
|
|
18
|
-
"zod": "4.0.
|
|
18
|
+
"zod": "4.0.17"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@eslint/js": "9.
|
|
21
|
+
"@eslint/js": "9.33.0",
|
|
22
22
|
"@jest/globals": "30.0.5",
|
|
23
23
|
"@modelcontextprotocol/inspector": "0.16.2",
|
|
24
|
-
"@playwright/test": "1.
|
|
24
|
+
"@playwright/test": "1.55.0",
|
|
25
25
|
"@types/jest": "30.0.0",
|
|
26
26
|
"@types/node": "22.16.5",
|
|
27
27
|
"eslint": "9.33.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"prettier": "3.6.2",
|
|
34
34
|
"ts-jest": "29.4.1",
|
|
35
35
|
"typescript": "5.9.2",
|
|
36
|
-
"typescript-eslint": "8.
|
|
36
|
+
"typescript-eslint": "8.40.0"
|
|
37
37
|
},
|
|
38
38
|
"bin": {
|
|
39
39
|
"mcp-server-tba": "dist/index.js"
|