Agentshare MCP Server

MCP bundle wrapper for AgentShare Streamable HTTP (do not publish to npm)

Local serverstdio

What is the Agentshare MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Agentshare MCP MCP server moves it into the conversation instead. MCP bundle wrapper for AgentShare Streamable HTTP (do not publish to npm).

The short version

DeFi-first intelligence for autonomous Solana agents (Meteora DLMM) — plus a secondary commerce procurement module.

The tools it exposes

The server publishes 11 tools. What each one is for:

  • search_products — Multi-source price comparison
  • best_offer — Single cheapest in-stock offer
  • best_offer_under_budget — Best offer under max price
  • product_detail — Full product by id from search
  • commerce_quote — ACP / agent-buyer listings envelope
  • service_meta — Capabilities, limits, coverage
  • dex_overview — DEX protocol rankings by 24h volume (DefiLlama)
  • dex_top_movers — DEX protocols with largest 1d volume-change % (DefiLlama)
  • solana_dex_brief — Solana DEX ecosystem brief (Raydium, Orca, Meteora, …)
  • meteora_brief — Meteora DLMM pool brief (verdict, risk_score, top pools)
  • meteora_pool_detail — Meteora DLMM pool detail (bin depth, liquidity curve proxy, current price)

What it needs from you

Configuration is passed through the environment: AGENTSHARE_API_KEY, YOUR_AGENTSHARE_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Agentshare MCP's toolset — search_products, best_offer, best_offer_under_budget and 8 more — is a fair guide to whether it matches your workflow. It is maintained by anhmtk; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Agentshare MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
search_productsMulti-source price comparison
best_offerSingle cheapest in-stock offer
best_offer_under_budgetBest offer under max price
product_detailFull product by id from search
commerce_quoteACP / agent-buyer listings envelope
service_metaCapabilities, limits, coverage
dex_overviewDEX protocol rankings by 24h volume (DefiLlama)
dex_top_moversDEX protocols with largest 1d volume-change % (DefiLlama)
solana_dex_briefSolana DEX ecosystem brief (Raydium, Orca, Meteora, …)
meteora_briefMeteora DLMM pool brief (verdict, risk_score, top pools)
meteora_pool_detailMeteora DLMM pool detail (bin depth, liquidity curve proxy, current price)

How to install the Agentshare MCP MCP server

{
  "mcpServers": {
    "agentshare": {
      "url": "https://agentshare.dev/mcp",
      "headers": { "X-API-Key": "YOUR_AGENTSHARE_KEY" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
AGENTSHARE_API_KEYCredential the server authenticates with.Yes
YOUR_AGENTSHARE_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Agentshare MCP to search products.
  • Use Agentshare MCP to best offer.
  • Use Agentshare MCP to best offer under budget.

Frequently asked questions

It connects Agentshare MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (search_products, best_offer, best_offer_under_budget, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Agentshare MCP directly.