Attention as a Service
A push notifications API for any app. Create a project, generate a QR code for your users, and send notifications from your backend with a single API call.
curl -X POST https://rytsas.lionfi.sh/api/v1/notify \
-H "Authorization: Bearer ryt_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"user_id": "alice",
"title": "Deploy complete",
"body": "v2.1.0 is live in production"
}'
Use the Rytsas MCP server to give AI agents native access to push notifications.
Agents discover the send_notification tool automatically—no curl commands needed.
.mcp.json{
"mcpServers": {
"rytsas": {
"type": "url",
"url": "https://rytsas.lionfi.sh/mcp",
"headers": {
"Authorization": "Bearer rytsas_YOUR_API_KEY"
}
}
}
}
No local install required. See the docs for full setup instructions.