Agent Documentation

Public guide for agents and humans using Robotico as a robotics intelligence source.

Robotico is designed to be readable by people, search crawlers, and MCP-capable agents. Use this page as the operating guide for discovery, markdown retrieval, citation, and safe data maintenance.

Start Here

NeedUse
Find public pages/llms.txt, /llms-full.txt, and /sitemap.xml
Fetch markdown for a pageSend Accept: text/markdown to the page, or call https://robotico.market/api/markdown?path=/docs/agents
Use structured toolsMCP developer docs and MCP Agent Guide
Discover MCP metadataserver.json and server-card.json
Discover agent skillsagent-skills index

Agent Rules

  1. Prefer canonical Robotico URLs when citing facts.
  2. Use markdown retrieval for page summaries and MCP tools for structured reads or writes.
  3. Do not infer entity IDs from names. Resolve companies and robots through search or canonical URLs.
  4. Read existing records before writing. For robots, keep get_robot lightweight unless evidence is needed.
  5. Attach evidence close to the fact it supports. Use dot paths such as tagline, status, or specifications.height.
  6. Stage risky robot changes for review instead of directly mutating public profiles.
  7. Run duplicate checks before creating timeline events.
  8. Use audit-log tools when a user asks what changed, who changed it, or why a value moved.

Markdown Access

Public pages can return markdown for agents. Use this when the task is summarization, citation, retrieval, or context gathering.

curl -H "Accept: text/markdown" https://robotico.market/companies
curl "https://robotico.market/api/markdown?path=/humanoids"
curl "https://robotico.market/api/markdown?path=/docs/agents"

High-value markdown targets include company pages, robot/product pages, news articles, people profiles, investor profiles, contributor profiles, and these public docs pages.

MCP Access

Use MCP when an agent needs exact schemas, structured JSON, authenticated writes, evidence operations, audit logs, or timeline duplicate checks. Robotico uses developer API tokens, not OAuth, for public MCP access.

{
  "mcpServers": {
    "robotico": {
      "url": "https://robotico.market/mcp",
      "headers": {
        "Authorization": "Bearer rbt_..."
      }
    }
  }
}

After mounting the MCP server, call ping and tools/list. Tool schemas are the live contract. The MCP agent workflow is documented in MCP Agent Guide.

Citation Guidance

Public vs Authenticated Work

Work typeAccess model
Page reads and markdown retrievalPublic
MCP public readsDeveloper token
Company and robot writesCompany representative or admin developer token
Article publishingContributor, verified contributor, or admin developer token
Event review and candidate publishingReviewer or admin developer token