account-pool-mcp 0.1.0
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/LICENSE +21 -0
- package/README.md +69 -0
- package/dist/bootstrap.d.ts +10 -0
- package/dist/bootstrap.js +28 -0
- package/dist/bootstrap.js.map +1 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +126 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.d.ts +12 -0
- package/dist/config.js +115 -0
- package/dist/config.js.map +1 -0
- package/dist/db.d.ts +13 -0
- package/dist/db.js +83 -0
- package/dist/db.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +28 -0
- package/dist/index.js.map +1 -0
- package/dist/logger.d.ts +8 -0
- package/dist/logger.js +44 -0
- package/dist/logger.js.map +1 -0
- package/dist/pool.d.ts +50 -0
- package/dist/pool.js +190 -0
- package/dist/pool.js.map +1 -0
- package/dist/schemas.d.ts +57 -0
- package/dist/schemas.js +43 -0
- package/dist/schemas.js.map +1 -0
- package/dist/server.d.ts +4 -0
- package/dist/server.js +75 -0
- package/dist/server.js.map +1 -0
- package/dist/types.d.ts +77 -0
- package/dist/types.js +17 -0
- package/dist/types.js.map +1 -0
- package/examples/accounts.example.json +21 -0
- package/examples/claude-mcp-config.json +19 -0
- package/examples/playwright-usage.md +48 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "account-pool-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server that brokers exclusive, crash-safe leases on a pool of credentials across unrelated agent sessions. Stops concurrent Claude/agent QA runs from grabbing the same test account.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"playwright",
|
|
9
|
+
"qa",
|
|
10
|
+
"test-accounts",
|
|
11
|
+
"lease",
|
|
12
|
+
"resource-pool",
|
|
13
|
+
"concurrency"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Ankit Sachdeva <ankitsachdeva001@gmail.com>",
|
|
17
|
+
"homepage": "https://github.com/ankitsxchdeva/account-pool-mcp#readme",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/ankitsxchdeva/account-pool-mcp.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/ankitsxchdeva/account-pool-mcp/issues"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=20"
|
|
28
|
+
},
|
|
29
|
+
"bin": {
|
|
30
|
+
"account-pool-mcp": "dist/index.js",
|
|
31
|
+
"account-pool": "dist/cli.js"
|
|
32
|
+
},
|
|
33
|
+
"files": ["dist", "examples", "README.md", "LICENSE"],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsc -p tsconfig.json",
|
|
36
|
+
"dev": "node --import tsx src/index.ts",
|
|
37
|
+
"cli": "node --import tsx src/cli.ts",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"test:watch": "vitest",
|
|
40
|
+
"lint": "biome check .",
|
|
41
|
+
"lint:fix": "biome check --write .",
|
|
42
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
43
|
+
"prepublishOnly": "npm run build"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
47
|
+
"better-sqlite3": "^12.11.1",
|
|
48
|
+
"zod": "^3.24.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@biomejs/biome": "^1.9.4",
|
|
52
|
+
"@types/better-sqlite3": "^7.6.12",
|
|
53
|
+
"@types/node": "^22.10.0",
|
|
54
|
+
"tsx": "^4.19.2",
|
|
55
|
+
"typescript": "^5.7.2",
|
|
56
|
+
"vitest": "^2.1.8"
|
|
57
|
+
}
|
|
58
|
+
}
|