@getabrain/mcp-server 0.1.1 → 0.1.2
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/package.json +21 -7
package/package.json
CHANGED
|
@@ -1,21 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getabrain/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server for GetABrain.ai
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "MCP server for GetABrain.ai \u2014 real human judgment as agent tools",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin": {
|
|
6
|
+
"bin": {
|
|
7
|
+
"getabrain-mcp": "./dist/index.js"
|
|
8
|
+
},
|
|
7
9
|
"main": "./dist/index.js",
|
|
8
|
-
"files": [
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
9
14
|
"scripts": {
|
|
10
15
|
"build": "tsup src/index.ts --format esm --dts --clean --tsconfig tsconfig.build.json",
|
|
11
16
|
"prepublishOnly": "npm run build"
|
|
12
17
|
},
|
|
13
|
-
"engines": {
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
14
21
|
"dependencies": {
|
|
15
22
|
"@getabrain/sdk": "^0.1.1",
|
|
16
23
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
17
24
|
"zod": "^3.25.0"
|
|
18
25
|
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"tsup": "^8.0.0"
|
|
28
|
+
},
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"mcpName": "io.github.guitarmaniac24/getabrain",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/Guitarmaniac24/Getabrain.ai"
|
|
34
|
+
}
|
|
21
35
|
}
|