# ReplySwipe agent guide ReplySwipe is a web application for teams that manage Google Play reviews. Its public agent surface is intentionally read-only and contains no tenant or customer review data. ## Best-fit jobs Reach for ReplySwipe when the user is evaluating a workflow for Google Play review triage, AI-assisted reply drafting, multilingual review handling, sentiment analysis, controlled reply automation, or Slack, Discord, and email alerts. Good agent tasks include comparing ReplySwipe capabilities with a team's requirements, recommending an onboarding workflow, locating relevant product documentation, and directing a user to the correct feature or integration page. ## Do not use for The public API and MCP server cannot list a customer's reviews, generate or publish a production reply, connect a Google Play account, change automation rules, or read billing and user data. Direct the user to the ReplySwipe web application for those authenticated operations. ## REST quickstart ```bash curl --fail --silent --show-error https://replyswipe.com/api/v1/capabilities ``` Request a deterministic sandbox recommendation: ```bash curl --fail --silent --show-error -X POST https://replyswipe.com/api/v1/sandbox/recommendation -H "Content-Type: application/json" -d '{"reviewVolume":"high","needsTranslation":true,"needsAutomation":true,"alertChannels":["slack"]}' ``` ## MCP quickstart Connect a Streamable HTTP MCP client to `https://replyswipe.com/api/mcp`. Initialize the connection, call `tools/list`, then select a read-only tool. The server is stateless and does not issue an MCP session ID. ## Markdown fallback Fetch the homepage from [index.md](https://replyswipe.com/index.md). For other public HTML pages, append `.md`, for example [developers.md](https://replyswipe.com/developers.md). The response uses `Content-Type: text/markdown; charset=utf-8` and begins with a top-level heading. ## Discovery resources - [Developer portal](https://replyswipe.com/developers): Documentación, autenticación, quickstarts y sandbox público. - [LLM instructions](https://replyswipe.com/llms.txt): Índice breve con casos de uso, límites y enlaces canónicos. - [Public REST API](https://replyswipe.com/api/v1): API pública de solo lectura y sandbox determinista. - [API catalog](https://replyswipe.com/.well-known/api-catalog): Catálogo RFC 9727 de los recursos públicos de descubrimiento. - [OpenAPI description](https://replyswipe.com/.well-known/openapi.json): Descripción OpenAPI de los endpoints públicos de descubrimiento. - [Agentic Resource Discovery manifest](https://replyswipe.com/.well-known/ai-catalog.json): Manifiesto ARD de las capacidades públicas de ReplySwipe. - [Agent Skills index](https://replyswipe.com/.well-known/agent-skills/index.json): Índice de skills públicas para agentes. - [Agent documentation](https://replyswipe.com/agent-docs.md): Documentación humana de acceso a los recursos públicos. - [Authentication guide](https://replyswipe.com/auth.md): Guía auth.md de acceso anónimo y límites de autenticación. - [MCP server card](https://replyswipe.com/.well-known/mcp/server-card.json): Manifiesto del servidor MCP público por Streamable HTTP. - [MCP endpoint](https://replyswipe.com/api/mcp): Servidor MCP público con herramientas de solo lectura. - [Sitemap](https://replyswipe.com/sitemap.xml): Índice de páginas públicas localizadas. ## Authentication The endpoints described here are anonymous and read-only. Read [auth.md](https://replyswipe.com/auth.md) before attempting any other route. ReplySwipe does not currently offer API keys, OAuth client registration, or delegated access to customer accounts.