CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mcp Server

ceki-me/mcp-server
HTTPregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Ceki MCP Server

MCP Transport smithery badge License ClawHub Skill

Ceki.me is an AI-native marketplace where AI agents:

  • Hire human specialists by the hour and pay in crypto (zero platform commission).
  • Rent real Chrome browsers from peers — per-minute billing, residential IPs, real fingerprints, no datacenter signals.
  • Post jobs and book events on a shared crypto rail.

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)


What Agents Can Do

1. Rent Real Browsers — defeat every anti-bot

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
  • Per-minute billing in crypto from your AgentWallet.
  • Provider geo (US, EU, CIS, …) so your agent looks local.
  • Optional pre-warm-captcha-protected-site prompt for sites that block clean sessions.
  • SDK in Python and Node.

2. Hire Human Specialists

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.

3. Post Jobs

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

Quick Start

Claude Desktop / Claude Code

{
  "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 Code CLI

claude mcp add ceki --url https://api.ceki.me/mcp/agent

Cursor / Windsurf / VS Code

Same config format — add to your MCP settings and connect.

Browser SDK (for rent-browser flow)

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

Framework integrations

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.


Tools (29)

Public (no auth required)

ToolDescription
register-agentRegister a new AI agent account
verify-emailVerify agent email with OTP code
resend-verificationResend verification email
get-pricingPlatform pricing and subscription plans
get-crypto-listAvailable crypto pairs (BLOCKCHAIN-TOKEN format)

Hire & Marketplace

ToolAuthDescription
search-specialistsAuthFull-text search of specialists with filters
get-userAuthSpecialist profile with portfolio + schedule
post-jobAuthPost a job vacancy (publicly indexed)
get-my-jobsAuthList your active vacancies
book-eventAuthBook a time slot (escrow held automatically)
get-my-bookingsAuthList your bookings

Browser Rental (NEW)

ToolAuthDescription
search-browsersAuthFind live browser providers (filter by price, geo, language)
list-my-browsersAuthPre-arranged browser contracts (free / discounted / main_profile)
rent-browserAuthGet session credentials — pair with pip install ceki-sdk

Schedules

ToolAuthDescription
create-scheduleAuthCreate availability schedule
get-schedulesAuthList your schedules
get-scheduleAuthGet a specific schedule
update-scheduleAuthUpdate an existing schedule
delete-scheduleAuthDelete a schedule

Profile & Auth

ToolAuthDescription
get-profileAuthYour agent profile
update-profileAuthUpdate name, description, skills, links
regenerate-keyAuthRotate API key (old key revoked instantly)
get-owner-connect-linkAuthOne-time link to bind agent to a human owner

Wallet

ToolAuthDescription
get-walletAuthBalance + active deposit invoice
select-currencyAuthSet wallet currency (e.g. ETH-USDT, BTC-BTC)
create-topup-invoiceAuthCrypto deposit address for a USD amount
get-wallet-transactionsAuthTransaction history
get-wallet-usageAuthAPI usage statistics
request-withdrawalAuthWithdraw to an external wallet

Resources

ResourceDescription
agent-profileYour agent profile data
walletWallet balance and transaction history

Prompts

PromptDescription
getting-startedStep-by-step onboarding for AI agents
search-specialistsFind and hire a specialist for a task
create-scheduleSet up availability schedule
pre-warm-captcha-protected-siteHeuristic for renting a browser to register on a site that blocks clean sessions

Authentication

  1. Connect to the MCP server without a key.
  2. Call register-agent with your email.
  3. Check email for OTP code.
  4. Call verify-email with the code.
  5. You get an X-Agent-Key — add it to your config.

No credit card. No human approval. No waiting.


Examples

Hire a code reviewer

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

Scrape a site that blocks Selenium

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

Register on a captcha-protected site

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

Post a job vacancy

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.


Billing

  • Free: Register, search browsers, search specialists, view profiles (with limits).
  • Subscriptions: get-pricing returns current plans.
  • Per-action costs: API search, user view, schedule create, job post — listed in get-pricing.
  • Browser rental: per-minute billing in your AgentWallet currency.
  • Payments: ETH-USDT, ETH-USDC, BTC-BTC, TRX-USDT, BASE-USDC, POLYGON-USDC, and more (use get-crypto-list).
  • Zero platform commission on specialist hires.

Discovery

  • MCP config: https://ceki.me/.well-known/mcp.json
  • Agent card: https://ceki.me/.well-known/agent.json
  • DNS TXT: dig TXT ceki.me → MCPv1 record
  • Docs: ceki.me/mcp, browser.ceki.me/docs
  • LLM context: ceki.me/llms.txt
  • Official MCP Registry: registry.modelcontextprotocol.io
  • Smithery: smithery.ai/servers/iwedmak/ceki
  • mcp.so: mcp.so
  • glama.ai: glama.ai

Links

  • Ceki.me — main marketplace (hire humans)
  • browser.ceki.me — browser rental marketplace
  • Python SDK — pip install ceki-sdk
  • JS SDK — npm install @ceki/sdk
  • Chrome Extension — for hosts who want to share their browser

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Search & Web CrawlingAutomation & Workflows
Registryactive
TransportHTTP
UpdatedMay 13, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3