-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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": "@paystack/mcp-server",
"version": "0.0.2",
"description": "Model Context Protocol (MCP) server for Paystack API integration",
"mcpName": "io.github.PaystackOSS/paystack",
"repository": {
"type": "git",
"url": "https://github.com/PaystackOSS/paystack-mcp-server.git"
},
"bin": {
"paystack-mcp-server": "./build/index.js"
},
"scripts": {
"build": "tsc && cp -r src/data build/",
"build:watch": "tsc --watch",
"prepack": "npm run build",
"dev": "tsx src/index.ts",
"inspect": "set DANGEROUSLY_OMIT_AUTH=true && CLIENT_PORT=8090 SERVER_PORT=9000 npx @modelcontextprotocol/inspector npm run dev",
"test": "mocha"
},
"files": [ "build", "README.md" ],
"keywords": [
"paystack",
"mcp",
"model-context-protocol",
"api",
"payment",
"integration"
],
"author": "Andrew-Paystack",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/inspector": "^0.18.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.7",
"js-yaml": "^4.1.1",
"mocha": "^11.3.0",
"openapi-types": "^12.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}