-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
106 lines (106 loc) · 2.98 KB
/
Copy pathmanifest.json
File metadata and controls
106 lines (106 loc) · 2.98 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"manifest_version": "0.3",
"name": "agentshare-price-mcp",
"display_name": "AgentShare - Real-time Price and Offer MCP",
"version": "1.0.6",
"description": "12 MCP tools (commerce + Polymarket + DEX Scout): search, offers, product detail, ACP commerce_quote, meta, Polymarket read-only, and DefiLlama DEX macro scout. For autonomous agents, Antigravity, Gemini Managed Agents.",
"author": {
"name": "AgentShare",
"url": "https://github.com/anhmtk"
},
"homepage": "https://agentshare.dev",
"documentation": "https://agentshare.dev/docs",
"support": "https://github.com/anhmtk/agentshare-mcp/issues",
"keywords": [
"price",
"mcp",
"hardware",
"robotics",
"ai-agent",
"aliexpress"
],
"license": "MIT",
"tools_generated": true,
"tools": [
{
"name": "search_products",
"description": "Search product listings; scope and sources match GET /coverage on agentshare.dev"
},
{
"name": "best_offer",
"description": "Find the single lowest in-stock price for a product intent"
},
{
"name": "best_offer_under_budget",
"description": "Find best offer within a price ceiling"
},
{
"name": "product_detail",
"description": "Full product and per-source prices by numeric id from search"
},
{
"name": "commerce_quote",
"description": "ACP agent-buyer quote envelope (agentshare.price.v1)"
},
{
"name": "service_meta",
"description": "Get API coverage and service metadata"
},
{
"name": "polymarket_markets",
"description": "List active Polymarket markets (read-only)"
},
{
"name": "polymarket_market_detail",
"description": "Polymarket market detail by market_id (read-only)"
},
{
"name": "polymarket_top_movers",
"description": "Top Polymarket movers (24h) (read-only)"
},
{
"name": "polymarket_brief",
"description": "Evidence-first Polymarket brief (verdict/risk/flags/citations)"
},
{
"name": "dex_overview",
"description": "DEX protocol rankings by 24h volume (DefiLlama)"
},
{
"name": "dex_top_movers",
"description": "DEX protocols with largest 1d volume-change % (DefiLlama)"
}
],
"server": {
"type": "node",
"entry_point": "server/bridge.mjs",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/server/bridge.mjs",
"https://agentshare.dev/mcp",
"--header",
"X-API-Key:${user_config.api_key}"
]
}
},
"user_config": {
"api_key": {
"type": "string",
"title": "AgentShare API Key",
"description": "Get your free key at https://agentshare.dev/pricing (100 req/month free)",
"sensitive": true,
"required": true
}
},
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=18.0.0"
}
},
"privacy_policies": [
"https://agentshare.dev/privacy"
]
}