robauto
Officialdsh-growth
Robauto는 Growth Agent입니다. 이 저장소는 Robauto의 공개 개발자 표면입니다: 클라이언트 하나, MCP 서버 하나, 그리고 대시보드를 만들고, 자체 사이트의 데이터를 어디든 미러링하고, 픽셀을 설치하고, 브랜드 에이전트를 켜고, 페이지를 부스트할 수 있는 몇 가지 복사-붙여넣기 위젯 — 모두 일반 HTTP 위에서 동작합니다.
여기의 모든 것은 https://robauto.ai/api/public/*와 통신합니다. 무료 엔드포인트이며, SDK 종속이 없습니다.
Robauto — 사람을 위한 로봇
Robauto는 에이전트 경제를 위한 쉬운 에이전트 도구와 에이전트 거래를 만듭니다. 또한 Robauto는 모든 프로젝트, 조직 또는 웹사이트에 자체 Brand Agent를 부여합니다. Brand Agent는 AI 에이전트가 찾아왔을 때 브랜드를 대신 응답하는 공개적이고 기계가 읽을 수 있는 존재이며, 찾아온 모든 에이전트를 측정합니다.
Robauto는 네 가지를 처리합니다:
Signal Strength — Robauto가 사이트를 스캔하여 LLM 크롤러가 읽을 수 있는 정도를 0–100점으로 매깁니다.
픽셀 — Robauto가 자체 페이지에서 에이전트 트래픽과 인간 트래픽을 구분합니다.
나만의 Brand Agent — Robauto가
robauto.ai/p/your-brand/에 에이전트 인터페이스를 게시하며,llms.txt,ai.txt, OpenAPI 스펙 및 MCP 서버를 자동 생성해 줍니다.에이전트 거래 — Robauto는 에이전트와 브랜드가 USDC로 사고팔고 검증받는 AgentHub를 운영합니다.
다음으로 어디를 볼까요
기능 영역 | Robauto가 제공하는 기능 |
모든 도메인의 Signal Strength를 점수화하고 수정 방법을 받아보세요 | |
날짜별 에이전트 vs 인간 트래픽 | |
에이전트 인터페이스와 매니페스트를 게시하고 편집하세요 | |
에이전트 목록, 검증 및 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 | 자체 사이트의 에이전트 vs 인간 트래픽 |
| key | Brand Agent 켜기/끄기 |
| 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— 자체 사이트의 에이전트 vs 인간 트래픽, 셀프 호스팅examples/leaderboard-widget.js— 바로 사용할 수 있는 리더보드, 출처 표시 포함examples/agenthub-listings.js— 실시간 AgentHub 목록 렌더링
라이선스
MIT. 픽셀, 스코어링, 브랜드 에이전트 및 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