robauto
Officialdsh-growth
Robauto は Growth Agent です。このリポジトリは、その公開開発者向けサーフェスです。1つのクライアント、1つのMCPサーバー、そしてコピーペーストするだけのウィジェットがいくつかあり、ダッシュボードの立ち上げ、自社サイトのデータのどこへのミラーリング、ピクセルのインストール、ブランドエージェントの有効化、ページのブーストを、すべてプレーンなHTTPで行えます。
ここにあるものはすべて https://robauto.ai/api/public/* と通信します。無料のエンドポイントで、SDKへのロックインはありません。
Robauto — 人々のためのロボット
Robauto は、エージェント経済のための使いやすいエージェントツールとエージェント取引を構築し、あらゆるプロジェクト、組織、ウェブサイトに独自の Brand Agent を提供します。Brand Agent は、AI エージェントが探しに来たときにブランドに代わって応答し、アクセスしてきたすべてのエージェントを測定する、公開された機械可読な存在です。
Robauto が対応するのは次の4つです。
Signal Strength — Robauto がサイトをスキャンし、LLM クローラーにとっての読みやすさを0〜100点でスコアリングします。
The pixel — Robauto が自社ページのエージェントトラフィックと人間のトラフィックを分離します。
Your Brand Agent — Robauto は
robauto.ai/p/your-brand/にエージェントインターフェースを公開し、llms.txt、ai.txt、OpenAPI 仕様、MCP サーバーを生成します。Agent transactions — Robauto は AgentHub を運営しており、エージェントとブランドが USDC で売買・認証を受けられます。
次にどこへ
機能領域 | Robauto の役割 |
任意のドメインの Signal Strength をスコアリングし、修正方法を確認できます | |
エージェントと人間のトラフィックを日別に表示 | |
エージェントインターフェースとそのマニフェストを公開・編集 | |
エージェントの一覧、認証、USDC 取引 | |
ネットワークが検出したすべてのボットとクローラー | |
7日間のエージェントアクセス数でランク付けされたサイト | |
任意のサイトやドキュメントセット用の MCP サーバーを生成 | |
AEO、エージェント、MCP、LLM ディスカバリーに関する短期コース | |
このサーフェスに加えて、プラグインプログラム も | |
ネットワークのライブフィードとエンジン別のエージェントアクセス |
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 が返すもの |
| — | サービス状態とすべてのディスカバリー URL |
| — | このツールリスト(機械可読) |
| — | Signal Strength(0〜100)とファイルごとの検出結果 |
| — | 7日間のエージェントアクセス数でランク付けされたサイトリーダーボード |
| — | ピクセルが検出したすべてのエージェントとクローラー |
| — | AgentHub のカタログとライブリスティング(USDC 建て) |
| — | ダッシュボード、ピクセル ID、開発者キー |
| key | ピクセル ID とコピー&ペースト可能なスニペット |
| key | 自社サイトのエージェントと人間のトラフィック |
| key | ブランドエージェントのオン/オフ |
| 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_html を含む robauto ブロックが含まれます。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 にあります。
This server cannot be installed
Maintenance
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
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to manage phone numbers, send/receive SMS, and place voice calls through natural language, connecting to the phone network via the AgentPhone API.184114MIT
- AlicenseAqualityCmaintenanceEnables AI agents to manage Segnals trading bots, strategies, PnL, and the strategy marketplace through natural language.36MIT
- AlicenseNot gradedqualityCmaintenanceEnables managing OpAMP agents via natural language, allowing listing agents, viewing details, and setting or deleting configuration overrides.MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI assistants to look up and update WorkForceAI platform data, including voice agents, campaigns, phone numbers, call logs, and dashboard stats, through natural language.
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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