agoragentic-mcp 1.3.1 → 1.3.3
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/LICENSE +21 -21
- package/README.md +182 -169
- package/mcp-server.js +710 -377
- package/package.json +47 -47
- package/scripts/postinstall.js +22 -22
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agoragentic-mcp",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"mcpName": "io.github.rhein1/agoragentic",
|
|
5
|
-
"description": "Stdio relay
|
|
6
|
-
"main": "mcp-server.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"agoragentic-mcp": "mcp-server.js"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"start": "node mcp-server.js",
|
|
12
|
-
"postinstall": "node scripts/postinstall.js || true"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"mcp",
|
|
16
|
-
"model-context-protocol",
|
|
17
|
-
"agoragentic",
|
|
18
|
-
"ai-agents",
|
|
1
|
+
{
|
|
2
|
+
"name": "agoragentic-mcp",
|
|
3
|
+
"version": "1.3.3",
|
|
4
|
+
"mcpName": "io.github.rhein1/agoragentic",
|
|
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
|
+
"main": "mcp-server.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"agoragentic-mcp": "mcp-server.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"start": "node mcp-server.js",
|
|
12
|
+
"postinstall": "node scripts/postinstall.js || true"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mcp",
|
|
16
|
+
"model-context-protocol",
|
|
17
|
+
"agoragentic",
|
|
18
|
+
"ai-agents",
|
|
19
19
|
"agent-os",
|
|
20
20
|
"agent-client-protocol",
|
|
21
21
|
"execute-first",
|
|
@@ -25,32 +25,32 @@
|
|
|
25
25
|
"base",
|
|
26
26
|
"x402",
|
|
27
27
|
"micro-ecf",
|
|
28
|
-
"agentic-payments",
|
|
29
|
-
"relay",
|
|
30
|
-
"stdio",
|
|
31
|
-
"langchain",
|
|
32
|
-
"crewai"
|
|
33
|
-
],
|
|
34
|
-
"author": "Agoragentic <support@agoragentic.com>",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/rhein1/agoragentic-integrations.git"
|
|
39
|
-
},
|
|
40
|
-
"homepage": "https://agoragentic.com",
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://github.com/rhein1/agoragentic-integrations/issues"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@modelcontextprotocol/sdk": "^1.27.1"
|
|
46
|
-
},
|
|
47
|
-
"engines": {
|
|
48
|
-
"node": ">=18.0.0"
|
|
49
|
-
},
|
|
50
|
-
"files": [
|
|
51
|
-
"mcp-server.js",
|
|
52
|
-
"scripts/postinstall.js",
|
|
53
|
-
"README.md",
|
|
54
|
-
"LICENSE"
|
|
55
|
-
]
|
|
56
|
-
}
|
|
28
|
+
"agentic-payments",
|
|
29
|
+
"relay",
|
|
30
|
+
"stdio",
|
|
31
|
+
"langchain",
|
|
32
|
+
"crewai"
|
|
33
|
+
],
|
|
34
|
+
"author": "Agoragentic <support@agoragentic.com>",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/rhein1/agoragentic-integrations.git"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://agoragentic.com",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/rhein1/agoragentic-integrations/issues"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.27.1"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18.0.0"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"mcp-server.js",
|
|
52
|
+
"scripts/postinstall.js",
|
|
53
|
+
"README.md",
|
|
54
|
+
"LICENSE"
|
|
55
|
+
]
|
|
56
|
+
}
|
package/scripts/postinstall.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
const BOLD = '\x1b[1m';
|
|
3
|
-
const CYAN = '\x1b[36m';
|
|
4
|
-
const DIM = '\x1b[2m';
|
|
5
|
-
const RESET = '\x1b[0m';
|
|
6
|
-
|
|
7
|
-
console.log(`
|
|
8
|
-
${BOLD}Agoragentic MCP Relay${RESET}
|
|
9
|
-
|
|
10
|
-
${CYAN}npx agoragentic-mcp${RESET}
|
|
11
|
-
|
|
12
|
-
This package starts a local stdio relay to the live Agoragentic MCP server:
|
|
13
|
-
${DIM}https://agoragentic.com/api/mcp${RESET}
|
|
14
|
-
|
|
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
|
|
18
|
-
|
|
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}
|
|
22
|
-
`);
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const BOLD = '\x1b[1m';
|
|
3
|
+
const CYAN = '\x1b[36m';
|
|
4
|
+
const DIM = '\x1b[2m';
|
|
5
|
+
const RESET = '\x1b[0m';
|
|
6
|
+
|
|
7
|
+
console.log(`
|
|
8
|
+
${BOLD}Agoragentic MCP Relay${RESET}
|
|
9
|
+
|
|
10
|
+
${CYAN}npx agoragentic-mcp${RESET}
|
|
11
|
+
|
|
12
|
+
This package starts a local stdio relay to the live Agoragentic MCP server:
|
|
13
|
+
${DIM}https://agoragentic.com/api/mcp${RESET}
|
|
14
|
+
|
|
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
|
|
18
|
+
|
|
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}
|
|
22
|
+
`);
|