Skip to content

Commit d2d7d05

Browse files
committed
mpc
1 parent d22fd87 commit d2d7d05

2 files changed

Lines changed: 22 additions & 9 deletions

File tree

.mcp.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
"mcpServers": {
33
"laravel-boost": {
44
"command": "php",
5+
"args": ["artisan", "boost:mcp"]
6+
},
7+
"paddle": {
8+
"command": "npx",
59
"args": [
6-
"artisan",
7-
"boost:mcp"
10+
"-y",
11+
"@paddle/paddle-mcp",
12+
"--api-key=${PADDLE_API_KEY}",
13+
"--environment=sandbox",
14+
"--tools=non-destructive"
815
]
916
}
1017
}
11-
}
18+
}

opencode.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@
44
"laravel-boost": {
55
"type": "local",
66
"enabled": true,
7-
"command": [
8-
"php",
9-
"artisan",
10-
"boost:mcp"
11-
]
7+
"command": ["php", "artisan", "boost:mcp"]
8+
},
9+
"paddle": {
10+
"type": "local",
11+
"enabled": true,
12+
"command": ["npx", "-y", "@paddle/paddle-mcp"],
13+
"environment": {
14+
"PADDLE_API_KEY": "${PADDLE_API_KEY}",
15+
"PADDLE_ENVIRONMENT": "sandbox",
16+
"PADDLE_TOOLS": "non-destructive"
17+
}
1218
}
1319
}
14-
}
20+
}

0 commit comments

Comments
 (0)