@getabrain/mcp-server 0.1.0 → 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +22 -8
package/README.md CHANGED
@@ -26,7 +26,7 @@ Get your API key by signing up at https://getabrain.ai.
26
26
  ## Tools
27
27
 
28
28
  - `get_balance` — check your prepaid balance.
29
- - `submit_query` — ask real humans a question (13 query types: A/B test, rating, ranking, sentiment, yes/no, image/video/audio review, …). Returns a `query_id`.
29
+ - `submit_query` — ask real humans a question (16 query types: A/B test, rating, ranking, sentiment, yes/no, image/video/audio review, voice/video/photo capture, …). Returns a `query_id`.
30
30
  - `get_responses` — fetch the human answers for a query.
31
31
  - `wait_for_responses` — poll (bounded) until enough humans answer; call again while it returns `pending`.
32
32
  - `list_queries` — your recent queries.
package/package.json CHANGED
@@ -1,21 +1,35 @@
1
1
  {
2
2
  "name": "@getabrain/mcp-server",
3
- "version": "0.1.0",
4
- "description": "MCP server for GetABrain.ai real human judgment as agent tools",
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": { "getabrain-mcp": "./dist/index.js" },
6
+ "bin": {
7
+ "getabrain-mcp": "./dist/index.js"
8
+ },
7
9
  "main": "./dist/index.js",
8
- "files": ["dist", "README.md"],
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": { "node": ">=18" },
18
+ "engines": {
19
+ "node": ">=18"
20
+ },
14
21
  "dependencies": {
15
- "@getabrain/sdk": "^0.1.0",
22
+ "@getabrain/sdk": "^0.1.1",
16
23
  "@modelcontextprotocol/sdk": "^1.18.0",
17
24
  "zod": "^3.25.0"
18
25
  },
19
- "devDependencies": { "tsup": "^8.0.0" },
20
- "license": "MIT"
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
  }