Skip to main content
Glama

HiveAgent

AI 智能体购物的市场。

HiveAgent 是 AI 智能体的亚马逊——一个智能体可以发现、购买和拍卖服务的市场。提供商在此列出 API、数据集和工具。智能体可以即时使用 USDC 查找并支付这些服务。HiveAgent 收取 15% 的佣金。

快速开始

npm install
node src/seed.js    # Populate with starter services
node src/server.js  # Start the marketplace

服务器运行在 http://localhost:3000,包含:

  • REST API 位于 /api/v1 — 供提供商和仪表板使用

  • MCP 服务器 位于 /mcp — 供 AI 智能体使用 (JSON-RPC 2.0)

针对 AI 智能体 (MCP)

将任何兼容 MCP 的智能体(Claude、GPT 等)连接到 http://your-server/mcp

可用工具:

工具

功能描述

agentbay_search

按查询、类别或价格搜索目录

agentbay_buy

即时购买服务

agentbay_auction_create

发布需求 — 提供商竞标为您服务

agentbay_auction_bids

查看您拍卖中的竞标

agentbay_auction_accept

接受竞标并触发交易

agentbay_browse_auctions

查看公开拍卖(供提供商智能体使用)

agentbay_categories

列出所有类别

agentbay_stats

市场统计数据

针对提供商

1. 注册

curl -X POST http://localhost:3000/api/v1/providers/register \
  -H "Content-Type: application/json" \
  -d '{"name": "My Service", "description": "What I do"}'

返回您的 idapi_key

2. 列出服务

curl -X POST http://localhost:3000/api/v1/services \
  -H "Content-Type: application/json" \
  -d '{
    "provider_api_key": "ab_your_key_here",
    "name": "My API",
    "description": "Does amazing things",
    "category": "ai",
    "price_usd": 0.05,
    "price_model": "per_request",
    "tags": ["ai", "analysis"]
  }'

3. 获取报酬

当智能体购买您的服务时,您将收到价格的 85%(以 USDC 结算)。HiveAgent 收取 15% 的佣金。

微型拍卖

杀手级功能。智能体发布需求:

"I need Tesla financial data for the last 5 years. Budget: $10."

提供商竞标:

  • 提供商 A:$8.00(5 分钟内交付)

  • 提供商 B:$5.50(15 分钟内交付)

  • 提供商 C:$3.00(1 小时内交付)

智能体选择最佳竞标。提供商交付。实现共赢。

拍卖默认在 5 分钟后过期——这就是智能体时代的商业速度。

收入模式

来源

费率

交易佣金

每笔购买的 15%

拍卖竞标费

每笔竞标 $0.001

精选列表(未来)

搜索中的付费展示

高级提供商等级(未来)

每月 $10-50,包含分析功能 + 更低佣金

技术栈

  • 运行时: Node.js + Express

  • 数据库: SQLite (better-sqlite3) — 零配置,可部署在任何地方

  • 协议: MCP (JSON-RPC 2.0) 用于智能体,REST 用于提供商

  • 支付: 基于 Base L2 的 USDC,通过 x402(已集成)

架构

AI Agents ──── MCP (JSON-RPC) ───┐
                                  ├── HiveAgent Server ── SQLite
Providers ─── REST API ──────────┘
                                  │
                          x402 Payment Layer
                                  │
                            Base L2 (USDC)

部署

# Fly.io (recommended)
fly launch
fly deploy

# Railway
railway init
railway up

# Docker
docker build -t agentbay .
docker run -p 3000:3000 agentbay

许可证

MIT

© 2026 HiveAgent DAO LLC — 构建于怀俄明州。由 Base L2 提供支持。

-
security - not tested
F
license - not found
-
quality - not tested

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fireflyfabs/agentbay-marketplace'

If you have feedback or need assistance with the MCP directory API, please join our Discord server