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.

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.

Example β†’
πŸ“‘

llms.txt

Documentation index at /llms.txt for AI models to discover and navigate content.

View β†’
🀝

Agent-Friendly

robots.txt welcomes AI bots. Web Bot Auth ready. AEO optimized.

robots.txt β†’
πŸ“Š

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}'