rukuma.dev
An agentic website on the edge
Built entirely on Cloudflare's free tier. Agent-readable, MCP-enabled, AI-searchable, and deployed to 300+ locations worldwide.
β‘ Workers
ποΈ D1
π Vectorize
π€ Workers AI
π‘ MCP
π WebMCP
Agentic Capabilities
MCP Server
Stateless MCP endpoint at /mcp with search, read, and list tools. Any agent can connect.
AI Search
Semantic search powered by Vectorize + Workers AI. Ask questions in natural language.
Search βMarkdown for Agents
Every page available as markdown at /md/<slug>. Clean content, no HTML noise.
Agent Analytics
Track which AI agents visit, what they read, and how they interact with your site.
Stats βLatest Posts
Loading postsβ¦
MCP Quick Start
Connect your AI agent to rukuma.dev:
# List available tools
curl -X POST https://rukuma.dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
# Search the site
curl -X POST https://rukuma.dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"search","arguments":{"query":"agentic web"}},"id":2}'
# Read a page
curl -X POST https://rukuma.dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"read_page","arguments":{"slug":"what-is-agentic-web"}},"id":3}'