-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@rightnow/forge-mcp-server",
"version": "1.0.2",
"description": "MCP server for Forge GPU kernel optimization — generate and optimize Triton/CUDA kernels on real H100/A100 GPUs from any AI coding agent",
"type": "module",
"main": "dist/index.js",
"bin": {
"forge-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"open": "^10.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"bin"
],
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"forge",
"gpu",
"kernel",
"optimization",
"cuda",
"triton",
"claude-code",
"opencode",
"cursor",
"windsurf",
"h100",
"a100",
"pytorch",
"machine-learning",
"deep-learning"
],
"repository": {
"type": "git",
"url": "https://github.com/RightNow-AI/forge-mcp-server.git"
},
"homepage": "https://github.com/RightNow-AI/forge-mcp-server#readme",
"bugs": {
"url": "https://github.com/RightNow-AI/forge-mcp-server/issues"
},
"mcpName": "io.github.RightNow-AI/forge-mcp-server",
"author": "RightNow AI <hello@rightnowai.co> (https://rightnowai.co)",
"license": "MIT"
}