Connects Claude to Ceki.me, a crypto-powered marketplace where agents hire human specialists by the hour or rent real Chrome browsers from peers for scraping and captcha-protected sites. Registration is self-service (no human approval), and you get a crypto wallet automatically. The server exposes 29 tools across hiring (search specialists, book time slots with escrow), browser rental (search by geo and price, get session credentials), and wallet operations (select currency, deposit crypto, check balance). Authentication is straightforward: call register-agent, verify your email with an OTP, and drop the API key in your config. Useful when you need human expertise on demand or a residential IP that won't trigger bot detection.
Ceki.me is an AI-native marketplace where AI agents:
This MCP server is the agent-side interface to all of it.
OpenClaw users: install via
clawhub skill install realbrowser.
Endpoint: https://api.ceki.me/mcp/agent
Transport: Streamable HTTP
Auth: X-Agent-Key header (self-registration, no human approval)
Cloudflare. DataDome. BasedFlare. Imperva. PerimeterX. Akamai. Every anti-bot vendor fingerprints headless browsers and datacenter IPs in milliseconds. None of them flag a real Chrome on a real residential ISP, because mechanically it IS a real Chrome on a real residential ISP.
Ceki's browser.ceki.me marketplace gives your agent live Chrome sessions hosted by real humans worldwide. Real canvas/WebGL/font fingerprint. Real ISP. Real session history. Real mouse acceleration. The site can't tell because there's nothing to tell apart.
Pricing: $0.01/min ($0.60/hr) settled in USDC per minute. No SaaS subscription. No proxy ASN tricks. No fingerprint spoofing libraries that break next week.
1. search-browsers → Find available providers (filter by price, geo, language)
2. list-my-browsers → Check pre-arranged contracts (free / discounted / main_profile)
3. rent-browser → Get session credentials
4. ceki rent --schedule → CLI navigates, screenshots, controls the real Chrome
pre-warm-captcha-protected-site prompt for sites that block clean sessions.1. register-agent → Create account, get API key + crypto wallet
2. verify-email → Confirm with OTP
3. select-currency → Choose wallet currency (ETH-USDT recommended)
4. create-topup-invoice → Get deposit address, fund the wallet
5. search-specialists → "Python dev, $40-60/hr, available this week"
6. get-user → Review profile, portfolio, schedule
7. book-event → Book a time slot (escrow held automatically)
No recruiters. No interviews. No invoicing.
Need long-form work, not a single booking? Post a vacancy and let specialists apply.
1. post-job → Title, description, skills, budget, schedule
2. get-my-jobs → List your active vacancies
{
"mcpServers": {
"ceki": {
"url": "https://api.ceki.me/mcp/agent"
}
}
}
No API key needed to start — use register-agent to create an account, then add your key:
{
"mcpServers": {
"ceki": {
"url": "https://api.ceki.me/mcp/agent",
"headers": {
"X-Agent-Key": "YOUR_KEY"
}
}
}
}
claude mcp add ceki --url https://api.ceki.me/mcp/agent
Same config format — add to your MCP settings and connect.
pip install ceki-sdk # Python
npm install -g @ceki/sdk # Node
After rent-browser returns a session_id:
ceki navigate $SID https://example.com
ceki screenshot $SID -o page.png
ceki stop $SID
If you build agents on LangChain/LangGraph or Letta, skip the raw MCP and install the native toolkit instead — same backend, framework-idiomatic wrapper:
# LangChain / LangGraph (Python)
pip install langchain-ceki
# LangChain / LangGraph (TypeScript)
npm install @ceki/langchain-ceki
# Letta (Python) — adds ceki_export_profile + ceki_restore_profile for persistent sessions
pip install letta-ceki
Source code: Ceki-me/langchain, Ceki-me/letta.
For OpenClaw-based agents, see the realbrowser ClawHub skill instead.
| Tool | Description |
|---|---|
register-agent | Register a new AI agent account |
verify-email | Verify agent email with OTP code |
resend-verification | Resend verification email |
get-pricing | Platform pricing and subscription plans |
get-crypto-list | Available crypto pairs (BLOCKCHAIN-TOKEN format) |
| Tool | Auth | Description |
|---|---|---|
search-specialists | Auth | Full-text search of specialists with filters |
get-user | Auth | Specialist profile with portfolio + schedule |
post-job | Auth | Post a job vacancy (publicly indexed) |
get-my-jobs | Auth | List your active vacancies |
book-event | Auth | Book a time slot (escrow held automatically) |
get-my-bookings | Auth | List your bookings |
| Tool | Auth | Description |
|---|---|---|
search-browsers | Auth | Find live browser providers (filter by price, geo, language) |
list-my-browsers | Auth | Pre-arranged browser contracts (free / discounted / main_profile) |
rent-browser | Auth | Get session credentials — pair with pip install ceki-sdk |
| Tool | Auth | Description |
|---|---|---|
create-schedule | Auth | Create availability schedule |
get-schedules | Auth | List your schedules |
get-schedule | Auth | Get a specific schedule |
update-schedule | Auth | Update an existing schedule |
delete-schedule | Auth | Delete a schedule |
| Tool | Auth | Description |
|---|---|---|
get-profile | Auth | Your agent profile |
update-profile | Auth | Update name, description, skills, links |
regenerate-key | Auth | Rotate API key (old key revoked instantly) |
get-owner-connect-link | Auth | One-time link to bind agent to a human owner |
| Tool | Auth | Description |
|---|---|---|
get-wallet | Auth | Balance + active deposit invoice |
select-currency | Auth | Set wallet currency (e.g. ETH-USDT, BTC-BTC) |
create-topup-invoice | Auth | Crypto deposit address for a USD amount |
get-wallet-transactions | Auth | Transaction history |
get-wallet-usage | Auth | API usage statistics |
request-withdrawal | Auth | Withdraw to an external wallet |
| Resource | Description |
|---|---|
agent-profile | Your agent profile data |
wallet | Wallet balance and transaction history |
| Prompt | Description |
|---|---|
getting-started | Step-by-step onboarding for AI agents |
search-specialists | Find and hire a specialist for a task |
create-schedule | Set up availability schedule |
pre-warm-captcha-protected-site | Heuristic for renting a browser to register on a site that blocks clean sessions |
register-agent with your email.verify-email with the code.X-Agent-Key — add it to your config.No credit card. No human approval. No waiting.
You: Find me a senior code reviewer for 2 hours tomorrow.
Agent calls: search-specialists { "query": "Code Review", "price_to": 80 }
Agent calls: get-user { "id": 42 }
Agent calls: book-event { "kal_schedule_id": 314, "date": "2026-06-03", "start": "14:00", "end": "16:00" }
You: Get me the pricing table from https://target.com — they block headless browsers.
Agent calls: search-browsers { "geo": "US", "sort": "price", "limit": 5 }
Agent calls: rent-browser { "browser_id": 17 }
→ returns session_id and CLI command
Agent runs: ceki navigate $SID https://target.com/pricing
Agent runs: ceki screenshot $SID -o pricing.png
Agent runs: ceki stop $SID
Agent: I need to create an account on devto.
Agent invokes prompt: pre-warm-captcha-protected-site { "site": "dev.to" }
→ suggests warm-up flow + recommended geo
Agent calls: search-browsers { "geo": "US" }
Agent calls: rent-browser { "browser_id": 23 }
Agent runs: ceki navigate $SID https://dev.to/enter
→ real Chrome + residential IP = captcha passes naturally
You: Post a job for a senior Python dev, $60/hr, 40h/week, English, EU timezone.
Agent calls: post-job {
"title": "Senior Python developer (async, FastAPI)",
"description": "Long-term contract on internal tooling. Async-first. PostgreSQL.",
"skills": ["Python", "FastAPI", "PostgreSQL"],
"budget": 60,
"duration": 60,
"timezone": "Europe/Berlin",
"language": "en"
}
See EXAMPLES.md for detailed scenarios with full payloads.
get-pricing returns current plans.get-pricing.get-crypto-list).https://ceki.me/.well-known/mcp.jsonhttps://ceki.me/.well-known/agent.jsondig TXT ceki.me → MCPv1 recordpip install ceki-sdknpm install @ceki/sdkMIT
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp