Yo

Serviço de notificação push hospedado para agentes de IA: uma chamada de ferramenta MCP envia ao proprietário uma notificação push sem conteúdo para o celular, com um context_url opcional para toque e acesso.

Documentação

Conecte o Yo ao seu agente

Uma chamada MCP ou REST envia uma notificação push para o seu telefone. Instruções completas para o agente: a skill do yo.

Cole isto no seu agente

Install the Yo integration so you can send me push notifications:
1. Fetch https://getyo.dev/.well-known/skills/index.json and install the "yo" skill (https://getyo.dev/skills/yo/SKILL.md).
2. Add the Yo MCP server from https://getyo.dev/mcp.json (Streamable HTTP at https://getyo.dev/mcp).
3. Run the registration flow: call the register_agent tool with a sensible name, show me the complete pairing link verbatim (including the part after the #), and poll check_registration until I approve. Store the returned API key in your secret mechanism as YO_API_KEY, and tell me which Yo account paired_with says you connected to.

Configuração por plataforma

Padrão de Agent Skills (OpenClaw, Hermes e qualquer cliente compatível com skills)

npx skills add https://getyo.dev

Codex

codex plugin marketplace add alfongj-com/yo-plugin
codex plugin add yo@yo-marketplace

Claude Code

/plugin marketplace add alfongj-com/yo-plugin
/plugin install yo@yo-marketplace

Kiro

Instale a partir do repositório de plugins (https://github.com/alfongj-com/yo-plugin) ou use a configuração MCP abaixo.

Cursor

Listagem no marketplace aguardando revisão — adicione a configuração MCP abaixo (Cursor Settings → MCP).

VS Code / GitHub Copilot / qualquer cliente MCP genérico

Adicione isto à sua configuração MCP (também em /mcp.json). register_agent, check_registration e cancel_registration funcionam sem o cabeçalho Authorization.

{
  "mcpServers": {
    "yo": {
      "type": "http",
      "url": "https://getyo.dev/mcp",
      "headers": {
        "Authorization": "Bearer ${YO_API_KEY}"
      }
    }
  }
}

REST (cron jobs, scripts, plataformas sem estado)

curl -X POST https://getyo.dev/api/yo \
  -H "Authorization: Bearer $YO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"context_url": "https://example.com/optional-link"}'