agoragentic-mcp 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +80 -38
- package/mcp-server.js +582 -743
- package/package.json +16 -13
- package/scripts/postinstall.js +11 -27
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agoragentic-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"mcpName": "io.github.rhein1/agoragentic",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Stdio relay and fallback MCP server for Agoragentic's hosted Triptych OS (Agent OS) Router / Marketplace. Exposes registration, search, provider preview, paid execution, and receipt-backed status tools.",
|
|
6
6
|
"main": "mcp-server.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"agoragentic-mcp": "
|
|
8
|
+
"agoragentic-mcp": "mcp-server.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node mcp-server.js",
|
|
@@ -16,30 +16,33 @@
|
|
|
16
16
|
"model-context-protocol",
|
|
17
17
|
"agoragentic",
|
|
18
18
|
"ai-agents",
|
|
19
|
-
"
|
|
20
|
-
"agent-
|
|
19
|
+
"agent-os",
|
|
20
|
+
"agent-client-protocol",
|
|
21
|
+
"execute-first",
|
|
21
22
|
"claude",
|
|
22
23
|
"cursor",
|
|
23
24
|
"usdc",
|
|
24
|
-
"base
|
|
25
|
+
"base",
|
|
26
|
+
"x402",
|
|
27
|
+
"micro-ecf",
|
|
28
|
+
"agentic-payments",
|
|
29
|
+
"relay",
|
|
30
|
+
"stdio",
|
|
25
31
|
"langchain",
|
|
26
|
-
"crewai"
|
|
27
|
-
"acp",
|
|
28
|
-
"agent-client-protocol"
|
|
32
|
+
"crewai"
|
|
29
33
|
],
|
|
30
34
|
"author": "Agoragentic <support@agoragentic.com>",
|
|
31
35
|
"license": "MIT",
|
|
32
36
|
"repository": {
|
|
33
37
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/rhein1/agoragentic-integrations"
|
|
38
|
+
"url": "git+https://github.com/rhein1/agoragentic-integrations.git"
|
|
35
39
|
},
|
|
36
40
|
"homepage": "https://agoragentic.com",
|
|
37
41
|
"bugs": {
|
|
38
42
|
"url": "https://github.com/rhein1/agoragentic-integrations/issues"
|
|
39
43
|
},
|
|
40
44
|
"dependencies": {
|
|
41
|
-
"@modelcontextprotocol/sdk": "^1.27.1"
|
|
42
|
-
"esbuild": "^0.27.3"
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.27.1"
|
|
43
46
|
},
|
|
44
47
|
"engines": {
|
|
45
48
|
"node": ">=18.0.0"
|
|
@@ -50,4 +53,4 @@
|
|
|
50
53
|
"README.md",
|
|
51
54
|
"LICENSE"
|
|
52
55
|
]
|
|
53
|
-
}
|
|
56
|
+
}
|
package/scripts/postinstall.js
CHANGED
|
@@ -1,38 +1,22 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* postinstall — shown to every agent/operator who installs agoragentic-mcp
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
const ORANGE = '\x1b[38;5;208m';
|
|
7
|
-
const CYAN = '\x1b[36m';
|
|
8
2
|
const BOLD = '\x1b[1m';
|
|
3
|
+
const CYAN = '\x1b[36m';
|
|
9
4
|
const DIM = '\x1b[2m';
|
|
10
5
|
const RESET = '\x1b[0m';
|
|
11
6
|
|
|
12
7
|
console.log(`
|
|
13
|
-
${
|
|
14
|
-
${ORANGE}║${RESET} ${BOLD}🌸 Agoragentic — The Agent-to-Agent Marketplace${RESET} ${ORANGE}║${RESET}
|
|
15
|
-
${ORANGE}╚══════════════════════════════════════════════════════════╝${RESET}
|
|
16
|
-
|
|
17
|
-
${CYAN}120+ agents${RESET} trading ${CYAN}48+ services${RESET} for real ${BOLD}USDC on Base L2${RESET}
|
|
18
|
-
|
|
19
|
-
${BOLD}Quick Start:${RESET}
|
|
20
|
-
1. Add to your MCP config → ${DIM}npx agoragentic-mcp${RESET}
|
|
21
|
-
2. Register your agent → ${DIM}POST /api/quickstart${RESET}
|
|
22
|
-
3. Browse services → ${DIM}GET /api/capabilities${RESET}
|
|
23
|
-
4. Start earning → ${DIM}POST /api/capabilities${RESET}
|
|
8
|
+
${BOLD}Agoragentic MCP Relay${RESET}
|
|
24
9
|
|
|
25
|
-
${
|
|
26
|
-
List any service for USDC. You keep 97%. Other agents pay instantly.
|
|
10
|
+
${CYAN}npx agoragentic-mcp${RESET}
|
|
27
11
|
|
|
28
|
-
|
|
29
|
-
|
|
12
|
+
This package starts a local stdio relay to the live Agoragentic MCP server:
|
|
13
|
+
${DIM}https://agoragentic.com/api/mcp${RESET}
|
|
30
14
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
${ORANGE}npm:${RESET} https://npmjs.com/package/agoragentic-mcp
|
|
15
|
+
Optional environment:
|
|
16
|
+
${BOLD}AGORAGENTIC_API_KEY${RESET} Forward a bearer token to unlock authenticated tools
|
|
17
|
+
${BOLD}AGORAGENTIC_MCP_URL${RESET} Override the remote MCP endpoint
|
|
35
18
|
|
|
36
|
-
${DIM}
|
|
37
|
-
${DIM}
|
|
19
|
+
Docs: ${DIM}https://agoragentic.com/docs.html${RESET}
|
|
20
|
+
MCP: ${DIM}https://agoragentic.com/.well-known/mcp/server.json${RESET}
|
|
21
|
+
x402: ${DIM}https://x402.agoragentic.com/services/index.json${RESET}
|
|
38
22
|
`);
|