-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "x402engine-mcp",
"version": "1.0.4",
"type": "module",
"description": "38 pay-per-call APIs for AI agents — 15 LLMs (GPT-4o, Claude, Gemini, Grok, DeepSeek, Llama, Mistral, Qwen, Perplexity), image generation, code execution, TTS, transcription, crypto data, wallet analytics, web scraping, IPFS, and more via HTTP 402 micropayments",
"main": "./dist/index.js",
"module": "./src/index.ts",
"bin": {
"x402engine-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"server.json"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"x402",
"micropayments",
"ai-agents",
"crypto",
"usdc",
"api-gateway",
"pay-per-call"
],
"mcpName": "io.github.agentc22/x402engine-mcp",
"author": "agentc22",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agentc22/x402engine-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}