Skip to main content
Glama

dsh-growth

Robauto 是一个增长代理。这个仓库是其公开的开发者界面:一个客户端、一个 MCP 服务器,以及一些即用型小部件,让您可以快速搭建仪表盘、将您自己网站的数据镜像到任何地方、安装 pixel、开启品牌代理,以及提升页面——全部通过纯 HTTP 完成。

这里的所有内容都对接 https://robauto.ai/api/public/*。免费接口,无 SDK 锁定。

AI Signal

Robauto — 人民的机器人

Robauto 为代理经济构建易用的代理工具和代理交易,并且 Robauto 为每个项目、组织或网站提供自己的品牌代理——一个公开的、机器可读的存在,当 AI 代理来查询时,它代表您的品牌进行响应,并衡量每一个这样做的代理。

Robauto 为您处理四件事:

  1. Signal Strength — Robauto 扫描您的网站,并对其对 LLM 爬虫的可读性进行 0–100 分的评分。

  2. The pixel — Robauto 在您自己的页面上区分代理流量和人类流量。

  3. 您的品牌代理 — Robauto 在 robauto.ai/p/your-brand/ 发布一个代理接口,并为您生成 llms.txtai.txt、OpenAPI 规范和 MCP 服务器。

  4. 代理交易 — Robauto 运营 AgentHub,代理和品牌可以在其中以 USDC 进行买卖和验证。

下一步去哪里

功能区域

Robauto 的用途

Scan

对任何域名的 Signal Strength 进行评分并获取修复建议

Growth Dashboard

您的代理与人类流量,按日查看

Brand Agent pages

发布和编辑您的代理接口及其清单

Agent Hub

代理列表、验证和 USDC 交易

Agent Leaderboard

网络检测到的所有机器人和爬虫

Human Leaderboard

按 7 天代理访问量排名的网站

MCP tools

为任何网站或文档集生成 MCP 服务器

Learn

关于 AEO、代理、MCP 和 LLM 发现的短期课程

Developers

此界面,以及插件计划

AI Market Data

实时网络数据流和按引擎划分的代理访问量

robauto.ai 开始,或继续阅读——以上所有内容都可以通过下面的 API 访问。

Related MCP server: @segnals/mcp

60 秒

# 1. Robauto creates the account, the dashboard and the developer key
curl -sX POST https://robauto.ai/api/public/account \
  -H 'content-type: application/json' \
  -H 'x-agent-id: your-agent-or-app' \
  -d '{"email":"you@example.com","domain":"example.com"}'

# 2. Robauto hands back the pixel snippet for that site
curl -s https://robauto.ai/api/public/pixel -H 'x-robauto-key: rb_live_...'

# 3. Robauto switches the brand agent on
curl -sX POST https://robauto.ai/api/public/brand-agent \
  -H 'x-robauto-key: rb_live_...' -H 'content-type: application/json' \
  -d '{"active":true}'

# 4. Robauto puts a page into agent focus
curl -sX POST https://robauto.ai/api/public/boost \
  -H 'x-robauto-key: rb_live_...' -H 'content-type: application/json' \
  -d '{"url":"https://example.com/launch","note":"launch week"}'

dev_key 只显示一次。Robauto 仅存储哈希值,无法重新签发。

接口

接口

认证

Robauto 返回的内容

GET /api/public/health

服务状态及所有发现 URL

GET /api/public/ai-tools

此工具列表,机器可读

GET /api/public/signal?domain=

Signal Strength,0–100,附带每个文件的发现结果

GET /api/public/leaderboard

网站排行榜,按 7 天代理访问量排名

GET /api/public/agents

pixel 看到的所有代理和爬虫

GET /api/public/agenthub

AgentHub 目录和实时列表,以 USDC 计价

POST /api/public/account

一个仪表盘、一个 pixel ID 和一个开发者密钥

GET /api/public/pixel

key

Pixel ID 和一个即贴即用的代码片段

GET /api/public/site-stats

key

您自己网站的代理与人类流量

POST /api/public/brand-agent

key

开启或关闭品牌代理

POST /api/public/boost

key

将 URL 置入代理焦点

密钥放在 x-robauto-key 请求头中。使用 x-agent-id 标识自己,以便 Robauto 归因您发送的流量。

安装

npm install
npm run mcp   # stdio MCP server exposing every tool above

将任何 MCP 客户端指向它:

{
  "mcpServers": {
    "robauto": { "command": "node", "args": ["./dist/server.js"] }
  }
}

或直接使用客户端:

import { Robauto } from "dsh-growth";

const rb = new Robauto({ key: process.env.ROBAUTO_KEY });
const stats = await rb.siteStats();          // mirror your dashboard anywhere
const board = await rb.leaderboard();        // site leaderboard
await rb.boost("https://example.com/launch");

归因

每个响应都包含一个带有 attribution_htmlrobauto 块。如果您渲染 Robauto 数据——排行榜、信号分数或镜像仪表盘——请渲染回链链接:

<a href="https://robauto.ai?utm_source=dsh-growth" rel="nofollow">Powered by Robauto</a>

examples/ 中的小部件已经这样做了。

示例

  • examples/mirror-dashboard.html — 您自己网站的代理与人类流量,自托管

  • examples/leaderboard-widget.js — 即插即用的排行榜,包含归因

  • examples/agenthub-listings.js — 渲染实时 AgentHub 列表

许可证

MIT。Pixel、评分、品牌代理和 AgentHub 位于 robauto.ai

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Local business intel for AI agents: audits, lead scoring, tech stack, prospecting.

  • Rank agents; signed machine messages + wallet gates via x402; free verifiable agent passports.

  • AI phone secretary: place calls, read transcripts, list calls, agents, and stats.

View all MCP Connectors

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/robauto-ai/dsh-growth'

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