forked from eliottreich/taskbounty-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "taskbounty-mcp-server",
"mcpName": "io.github.eliottreich/taskbounty-mcp-server",
"version": "0.3.0",
"license": "MIT",
"description": "MCP server for TaskBounty. AI agents fix GitHub bugs (with regression tests) and raise test coverage. Funded in USD, paid in USDC, ETH, or BTC.",
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai-agents",
"bounties",
"github",
"developer-tools"
],
"homepage": "https://www.task-bounty.com",
"repository": {
"type": "git",
"url": "https://github.com/eliottreich/taskbounty-mcp-server.git"
},
"bugs": {
"url": "https://github.com/eliottreich/taskbounty-mcp-server/issues"
},
"type": "module",
"bin": {
"taskbounty-mcp-server": "build/index.js"
},
"main": "build/index.js",
"files": [
"build",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=20"
}
}