Infrastructure for autonomous agents · REST + MCP Streamable HTTP
Commerce & price tools built for agents that never forgive downtime
AgentShare is the data layer for procurement agents, shopping copilots, and on-chain service agents (e.g. OpenClaw on Virtuals) that need structured marketplace prices, best-offer logic, and ACP-ready commerce quotes — not HTML scraping.
- WAL-hardened SQLite for parallel agent traffic
- 6 MCP tools including
product_detail&commerce_quote - Honest
data_status+ trust metadata in responses
What AgentShare provides
Your agent calls one API (REST or MCP) to search AI hardware, robotics parts, mini PCs, and robot/RC power — then quotes prices with affiliate-ready URLs. Built for autonomous and human-not-present workflows where errors cost reputation and contract penalties.
Procurement agents
Compare listings, enforce budgets with best_offer_under_budget, drill into product_detail.
On-chain service agents
Stable commerce_quote envelope for ACP/Virtuals buyers; same key for high-volume MCP loops.
Dev / vibe coding
Antigravity skill + Managed Agents JSON — copy, paste, ship without wiring parsers yourself.
Google Antigravity skill
Install the official agentshare-price-intelligence skill so Antigravity (or compatible harnesses) auto-invokes the right MCP tools for price search and commerce quotes.
One-click install (bash)
Global install (recommended for Antigravity desktop):
mkdir -p ~/.gemini/antigravity/skills/agentshare-price-intelligence && curl -fsSL https://agentshare.dev/integrations/antigravity/agentshare-price-intelligence/SKILL.md -o ~/.gemini/antigravity/skills/agentshare-price-intelligence/SKILL.md
Or curl the published skill from production:
curl -fsSL https://agentshare.dev/integrations/antigravity/agentshare-price-intelligence/SKILL.md | tee ~/.gemini/antigravity/skills/agentshare-price-intelligence/SKILL.md
Manifest: https://agentshare.dev/.well-known/antigravity-skills.json ·
Skill file: SKILL.md ·
MCP template: mcp-config.json
Gemini Managed Agents integration
Copy the JSON below into your Managed Agent / tool configuration, or fetch it programmatically:
GET https://agentshare.dev/api/v1/examples?template=managed-agent
{
"schema_version": "1.0",
"template": "managed-agent",
"description": "Wire AgentShare MCP into a managed or autonomous agent. Replace YOUR_KEY with agshp_… from /signup.",
"base_url": "https://agentshare.dev",
"discovery": {
"agent_json": "https://agentshare.dev/agent.json",
"antigravity_skills": "https://agentshare.dev/.well-known/antigravity-skills.json",
"mcp_server_card": "https://agentshare.dev/.well-known/mcp/server-card.json",
"for_agents": "https://agentshare.dev/for-agents"
},
"managed_agent_config": {
"model_hint": "gemini-3.5-flash",
"instructions": "You are a procurement agent for AI hardware and robotics. Use AgentShare MCP tools for price search, best offers, product detail, and commerce_quote. Respect meta.data_status before quoting prices.",
"mcp": {
"transport": "streamable_http",
"url": "https://agentshare.dev/mcp",
"headers": {
"X-API-Key": "${AGENTSHARE_API_KEY}",
"Authorization": "Bearer ${AGENTSHARE_API_KEY}"
}
},
"tools_recommended": [
"search_products",
"best_offer",
"best_offer_under_budget",
"product_detail",
"commerce_quote",
"service_meta"
]
},
"env": {
"AGENTSHARE_API_KEY": "YOUR_KEY"
}
}
Replace YOUR_KEY with your agshp_… key. Model hint: gemini-3.5-flash for fast tool loops.
MCP tools (6)
Streamable HTTP endpoint: https://agentshare.dev/mcp
— same X-API-Key as REST. Server card:
/.well-known/mcp/server-card.json
search_products
Search product listings
Multi-listing search with prices, sources, and freshness metadata. Use to compare options.
best_offer
Best single offer
Single cheapest in-stock offer for a product intent — one clear recommendation.
best_offer_under_budget
Best offer under budget
Best deal within a max price (budget / “under $X”). Same unit as currency (USD or VND).
product_detail
Product detail by ID
Full product + per-source prices when you already have a product_id from search.
commerce_quote
Commerce quote (ACP)
Stable agentshare.price.v1 envelope for autonomous buyers (search or best_offer mode).
service_meta
Service metadata
Capabilities, rate limits, and integration hints (REST meta; MCP connect still needs your key).
dex_overview
DEX overview (24h volume)
Rank DEX protocols by 24h volume or 1d change via DefiLlama (read-only macro scout).
dex_top_movers
DEX top movers (24h volume change)
Largest absolute 1d volume % change among liquid DEX protocols (DefiLlama).
solana_dex_brief
Solana DEX ecosystem brief
Protocol-level Solana DEX intelligence (Raydium, Orca, Meteora, …): volume, 24h change, verdict/risk from DefiLlama aggregates.
meteora_brief
Meteora DLMM pool brief
Evidence-first Meteora DLMM pool brief: top pools by fee/TVL, volume, APR; verdict SAFE/CAUTION/AVOID with risk_score and citations.
Agent quickstart (no key)
GET /agent.json— tools, auth, error contractGET /api/v1/examples— curl / Python / JS snippetsGET /api/v1/protocol— envelopes & AX error fields- Register — free tier (~100 req/month)
curl -sS "https://agentshare.dev/api/v1/search?q=jetson+orin&limit=5" \
-H "X-API-Key: YOUR_KEY"
Built for parallel agent load
Production SQLite runs WAL mode with busy_timeout=5000ms and
synchronous=NORMAL so concurrent credit logging and tool calls avoid
database is locked under burst traffic — without requiring Postgres on day one.
When something fails
Errors return JSON agents can act on — not opaque HTML:
- 401 —
signup_url,suggestion - 429 —
retry_after_seconds,Retry-Afterheader - 404 — correct
/api/v1/…paths insuggestion
Full contract: https://agentshare.dev/api/v1/protocol · Coverage: /coverage