Agent-first marketplace for industrial assets & livestock medianería; humans approve every write.
MCPpedia last refreshed this data
ai.epinu/epinu is an MCP server that agent-first marketplace for industrial assets & livestock medianería; humans approve every write. Its tool list has not been published yet, requires no API key, and scores 36/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"epinu": {
"url": "https://api.epinu.ai/api/agent/mcp",
"type": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Epinu is an agent-first marketplace for real-world industrial assets — ASIC repair services, mining and energy equipment, and livestock medianería collaborations. AI agents are first-class users: they can search, read, and draft deals directly over MCP, and every write goes through a human-approval broker with a full audit trail.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Девять российских маркетплейсов и китайский Taobao как MCP-серверы: Wildberries, Ozon, Яндекс Маркет, Детский мир, Авито, Мегамаркет, Lamoda, DNS, Ситилинк. Плюс сравнение цен по всем сразу. Только чтение, ключи не нужны.
Monetize any MCP server: x402 paywall, pay-per-call billing in USDC on Base, agent marketplace.
MCP server for the Shopify Admin API: products, orders, customers, inventory, discounts.
MCP server for Salesforce B2C Commerce Cloud development assistance
MCP Security Weekly
Get CVE alerts and security updates for ai.epinu/epinu and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Epinu is an agent-first marketplace for real-world assets — agro and energy first, extending to mining, equipment, and industrial services. AI agents are first-class users: they can search, read, and draft deals directly over MCP, and every write goes through a human-approval broker with a full audit trail.
This is the public integration repository for Epinu's hosted MCP endpoint:
registry metadata (ai.epinu/epinu
in the official MCP Registry), runnable examples, and operational checks.
The Epinu platform implementation is maintained separately.
https://api.epinu.ai/api/agent/mcp (Streamable HTTP, JSON-RPC 2.0)bash examples/quickstart.sh
That queries the live public production endpoint anonymously and returns
current public project and marketplace results. The sample queries currently
surface an ASIC repair center in Odessa, TX and related services; inventory
may change. (QA fixtures are excluded from public reads as of 2026-07-15.) The
anonymous tier allows
initialize, tools/list, and five read tools (getting_started,
marketplace_listings_search, projects_search, search, and fetch)
against public data —
see TOOLS.md for the reference.
Or the same flow in plain Node (zero dependencies, Node ≥ 18):
node examples/walkthrough.mjs
claude mcp add --transport http epinu https://api.epinu.ai/api/agent/mcp
or in .mcp.json:
{
"mcpServers": {
"epinu": {
"type": "http",
"url": "https://api.epinu.ai/api/agent/mcp"
}
}
}
Works immediately in read-only mode. To let your agent draft deals, add
"headers": {"Authorization": "Bearer epagt_..."} with a delegated token —
see below for how to get one. Details in examples/claude-code.md.
Epinu's write tools (marketplace_listing_create, project_create, …) do
not write to the database. They create proposals (status: pending)
and return an approval_url. A human reviews the proposal in the Epinu
dashboard and approves or rejects it — only approval executes the change.
examples/walkthrough.mjs demonstrates the
agent-controlled portion of the flow: search → create a pending proposal →
check its status. Human approval happens separately in the Epinu dashboard.
examples/walkthrough.md is the recorded,
redacted transcript of a real production run — proposal created, reviewed,
and rejected by the human, with nothing ever written.
actor.type=personal_agent
and the agent's client id. The human always knows which agent proposed
what, and the trail survives.epagt_ token is created by
the account owner with explicit scopes (Dashboard → Settings → Authorize
Agent). Out-of-scope calls fail with a clean scope error. Sensitive actions
(deletes, profile changes) additionally require fresh MFA on the human side
at approval time.