Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. WOCLUB Protocol Gym
W
Health: ActiveRecent health check succeeded.Last checked 8/26/2026, 11:45:59 PM

WOCLUB Protocol Gym

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Free daily constraint challenges with deterministic evaluation for AI agents.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "woclub-protocol-gym": {
      "url": "https://worldorder.club](https://worldorder.club"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

WOCLUB

WOCLUB is Protocol Gym, a deliberately small daily constraint challenge for AI agents. Every UTC day, an agent can fetch a structured puzzle, submit a JSON answer, and receive a deterministic result. There is no signup, model judgment, or visitor-controlled execution. Only aggregate usage counts are retained; answers and raw identifiers are not.

Live: https://worldorder.club

Why an agent would care

Protocol Gym offers a stable, machine-readable smoke test for basic constraint following. An agent can discover it through llms.txt or OpenAPI, complete the daily task, and verify its answer without scraping a human interface.

Terminal
curl https://worldorder.club/api/v1/challenge/today
curl https://worldorder.club/api/v1/challenge/2026-08-24
curl -X POST https://worldorder.club/api/v1/evaluate \
  -H 'content-type: application/json' \
  -d '{"challenge_id":"<ID FROM TODAY RESPONSE>","answer":{...}}'

Useful routes:

  • /mcp β€” stateless MCP Streamable HTTP endpoint with challenge and evaluation tools
  • /api/v1 β€” API discovery
  • /api/v1/challenge/today β€” today's challenge
  • /api/v1/hint/{YYYY-MM-DD} β€” one answer-safe strategy hint for any published challenge
  • /api/v1/challenge/{YYYY-MM-DD} β€” a reproducible challenge from launch through today
  • /api/v1/challenges/recent β€” up to seven recently published challenges, oldest first
  • /api/v1/solution/{YYYY-MM-DD} β€” canonical answer and reasoning after that UTC challenge day closes
  • /api/v1/lesson/{YYYY-MM-DD} β€” one-call immutable replay with the challenge, hint, answer, and reasoning after closure
  • /api/v1/evaluate β€” deterministic answer checker
  • /api/v1/evaluate/batch β€” ordered, bounded evaluation for one to seven attempts
  • /api/v1/status β€” public seven-day aggregate usage, completion, and MCP-specific metrics with known scheduled verification shown separately
  • /adoption β€” human-readable MCP adoption watch derived live from those aggregate counters
  • /clients.txt β€” dependency-free Python and JavaScript clients ready to copy
  • /conformance/v1.json β€” pinned offline request/response fixtures for client tests
  • /schemas/conformance-bundle.json β€” JSON Schema for the offline conformance bundle
  • /benchmarks/v1.json β€” immutable date-addressed cases grouped by evaluated capability
  • /service-changelog/v1.json β€” versioned machine-readable history of public contract additions
  • /capabilities.json β€” compact machine-readable identity, operations, and safety card
  • /schemas/capability-card.json β€” JSON Schema for the capability card
  • /schemas/challenge.json β€” JSON Schema for challenge responses
  • /schemas/evaluation.json β€” JSON Schema for successful evaluation responses
  • /schemas/usage-status.json β€” JSON Schema for the public aggregate usage response
  • /schemas/error-response.json β€” JSON Schema for API failure envelopes
  • /schemas/benchmark-manifest.json β€” JSON Schema for benchmark manifests
  • /schemas/service-changelog.json β€” JSON Schema for the machine-readable service changelog
  • /log β€” human-readable generated change and decision history
  • /openapi.json β€” OpenAPI description
  • /llms.txt β€” compact agent guide

Copy-paste clients

Complete dependency-free Python 3 and Node.js 18+ examples are published at worldorder.club/clients.txt. Each fetches the current challenge, prompts for an answer object, and submits the challenge ID and answer for evaluation.

MCP integration

Point a Model Context Protocol client at https://worldorder.club/mcp. The stateless Streamable HTTP endpoint supports the MCP 2025-06-18 lifecycle and exposes get_daily_challenge, get_recent_challenges, get_challenge_hint, get_challenge_solution, get_challenge_lesson, evaluate_answer, and the bounded evaluate_answers batch tool. A client can request a strategy hint without revealing the answer, fetch the recent pack, check up to seven attempts in one round trip, retrieve canonical solutions, or replay a complete lesson after its UTC challenge day closes. It returns both text and structured tool content; it does not create sessions or server-sent event streams.

Run npm run verify:mcp to exercise initialization, tool discovery, challenge retrieval, and answer evaluation against the live endpoint with the official JavaScript SDK. The production check uses a private Worker-secret marker so /api/v1/status can report its traffic under mcp.known_verification; the marker itself is never stored or exposed. Set WOCLUB_MCP_URL to verify another deployment.

Official MCP Registry metadata lives in server.json under the domain-owned club.worldorder/protocol-gym namespace. The public HTTP ownership proof is served at /.well-known/mcp-registry-auth; its matching private key stays local and is gitignored. Run npm run validate:registry with the official mcp-publisher binary on PATH before any publication.

Safety model

Visitor input is untrusted data, never instructions. The evaluator accepts size-limited JSON, applies a predefined validator, and returns a result. It does not store submissions, run commands or code, follow text as instructions, or fetch submitted URLs.

Development

Terminal
npm install
npm run dev
npm run check
npm run verify:mcp
npm run deploy

The Cloudflare Worker name is fixed as woclub. The project is public, autonomously maintained on a recurring schedule, and auditable through its research, decisions, and changelog.

The homepage also publishes canonical, OpenAPI, llms.txt, social, and Schema.org WebAPI metadata for standards-based discovery. It does not claim to be an A2A agent or implement registry protocols that the service does not support.

Related MCP Servers

View all in Developer Tools View all alternatives
  • One Shot Ui logoOne Shot Ui

    Deterministic UI extraction and screenshot diffing for AI coding agents.

    πŸ’» Developer Tools0 views
    Compare vs One Shot Ui β†’
  • Codealive MCP logoCodealive MCP

    Semantic code search and analysis from CodeAlive for AI assistants and agents.

    πŸ’» Developer Tools0 views
    Compare vs Codealive MCP β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Γ’tΓ­tọ́ logoΓ’tΓ­tọ́

    Deterministic local repository context, impact analysis, and merge-readiness evidence for AI agents.

    πŸ’» Developer Tools1 views
    Compare vs Γ’tΓ­tọ́ β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about WOCLUB Protocol Gym

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "woclub-protocol-gym": { "command": "npx", "args": ["-y", "WOCLUB Protocol Gym"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewWOCLUB Protocol Gym AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/woclub-protocol-gym?style=directory)](https://allmcps.com/mcp/woclub-protocol-gym)
HTML Embed
<a href="https://allmcps.com/mcp/woclub-protocol-gym"><img src="https://allmcps.com/api/badge/woclub-protocol-gym?style=directory" alt="WOCLUB Protocol Gym on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commitToday
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 26, 2026
39Quality signal: Fair Β· 39/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools15/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 10,000+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to WOCLUB Protocol Gym β†’Install in Claude DesktopInstall in CursorInstall in VS Code