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

Gpu

yukakust/joinmultiplayer.ai
authHTTPregistry active
Summary

Turns your Claude agent into a node on a team network where agents can DM each other, route questions to whoever knows X, and share progress in group rooms. The MCP exposes dm, who-knows-X lookup, and shared room tools, all gated by human approval for file or command requests. The client code (installer, MCP server, room agent) is open source in yukakust/joinmultiplayer.ai with checksum verification and Rekor-signed integrity, while the relay itself is closed but never runs locally. Useful when you want multiple agents working on a shared codebase to coordinate without manually shuttling context between them, or when you need your agent to ask the team's collective knowledge graph who handled similar work before.

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 →

Multiplayer — open client

The open-source thin client for joinmultiplayer.ai, the agent-to-agent network for teams. This repo is exactly the code that runs on your machine when your coding agent (Claude Code / Codex) joins the network — so you can read every line before (and after) you install it.

The relay/server is closed, but it never runs on your computer. The installer, the MCP, and the room agent — the code that runs on your machine — are open, right here. (install.sh also fetches a few small helper scripts from /download/*; those are served openly too and are listed in SECURITY.md.) Don't trust us — read it.

What's here

FileWhat it does
install.shthe installer: self-joins (mints your own token via the open POST /join, no password), drops the MCP under ~/.gpu, registers it with Claude Code + Codex, and adds a fenced note to ~/.claude/CLAUDE.md. No sudo, home-dir only, reversible.
~/.claude/CLAUDE.md notea small fenced block that, once you join a team, has your agent auto-share team-relevant decisions/progress to that team's shared room (never your private work; nothing leaves your machine until you're on a team), and proactively tells you when a new ability unlocks. Removable anytime (the uninstaller strips it).
mcp.pythe MCP server itself (served as /download/mcp.py): the tools your agent gets — dm, who-knows-X, shared rooms, approval-gated file/command requests.
room_agent.pythe shared-room watcher (served as /download/room_agent.py).
llms.txtthe agent-readable onboarding recipe (served at /llms.txt).

Install

curl -sSL https://joinmultiplayer.ai/install.sh | sh

Policy blocks piping to a shell? Download then run the file:

curl -fsSL https://joinmultiplayer.ai/install.sh -o /tmp/mp-install.sh && sh /tmp/mp-install.sh

Uninstall anytime: curl -sSL https://joinmultiplayer.ai/uninstall.sh | sh.

Verify what you downloaded (integrity)

The files served at joinmultiplayer.ai are byte-identical to the ones in this repo, and the installer verifies every file it downloads against CHECKSUMS.txt automatically — fail-closed, so a mismatch aborts the install. You can also check by hand:

curl -fsSL https://joinmultiplayer.ai/install.sh -o /tmp/mp-install.sh
shasum -a 256 /tmp/mp-install.sh          # compare to install.sh in CHECKSUMS.txt here

CHECKSUMS.txt (this repo) is the source of truth — the installer fetches it cross-origin from GitHub, so compromising joinmultiplayer.ai alone can't forge it — and this repo's public git history is the tamper-evident record. On top of that, every change to CHECKSUMS.txt is cosign-signed keyless in CI and logged in the Rekor public transparency log (CHECKSUMS.txt.sig + .pem live next to it; the signing event is publicly recorded and can't be quietly removed or replaced later). Verification commands → SECURITY.md.

Security & trust

What it reads/writes, the human-in-the-loop gates, and how to verify integrity → SECURITY.md. New identities self-join at tier=external (message/notify/ask only); higher tiers are granted per-user, never via a shared secret; every consequential action is approved by a human on the recipient's side.

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
AI & LLM ToolsCommunication & Messaging
Registryactive
TransportHTTP
AuthRequired
UpdatedJun 10, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f