Yo

Servicio de notificaciones push alojado para agentes de IA: una llamada a la herramienta MCP envía al propietario una notificación push sin contenido a su teléfono, con un context_url opcional para tocar y abrir.

Documentación

Conecta Yo a tu agente

Una llamada MCP o REST envía una notificación push a tu teléfono. Instrucciones completas para el agente: la skill yo.

Pega esto en tu 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.

Configuración por plataforma

Estándar de Agent Skills (OpenClaw, Hermes y cualquier cliente compatible con 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

Instala desde el repositorio de plugins (https://github.com/alfongj-com/yo-plugin) o usa la configuración MCP a continuación.

Cursor

Listado en el marketplace pendiente de revisión: añade la configuración MCP a continuación (Cursor Settings → MCP).

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

Añade esto a tu configuración MCP (también en /mcp.json). register_agent, check_registration y cancel_registration funcionan sin el encabezado Authorization.

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

REST (trabajos cron, scripts, plataformas sin 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"}'