CCM
/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

Claude Code Marketplaces

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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
runrelay avatar

Mcp Relay

runrelay/app-runrelay
9 toolsauthSSEregistry active
Summary

This relay server sits between Claude and RunRelay's agent orchestration platform, giving you threaded AI conversations with human-in-the-loop approval gates. It connects over SSE to their hosted endpoint at mcp.runrelay.io, so there's no local setup. The travel capability discovery piece suggests it can expose dynamic tool sets based on context, though the specifics aren't in the source. You'd reach for this if you're building workflows where AI agents need to pause for human confirmation before taking actions, or if you want persistent conversation threads that survive beyond a single Claude session. Think approval workflows, audit trails, and multi-step tasks where oversight matters.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Tools

Public tool metadata for what this MCP can expose to an agent.

9 tools
project.listList all Relay projects you have access to. Returns project IDs, names, slugs, and descriptions.1 params

List all Relay projects you have access to. Returns project IDs, names, slugs, and descriptions.

Parameters* required
limitnumber
Maximum number of projects to return
project.get_briefFetch a project context brief — decisions, constraints, progress, and memory items formatted for an AI coding session.4 params

Fetch a project context brief — decisions, constraints, progress, and memory items formatted for an AI coding session.

Parameters* required
includearray
Extra sections to include in the brief
kindstring
Brief kind: fresh_chat_bootstrap or quick_continuity
projectIdstring
Project ID (uses token-scoped project if omitted)
targetProfileKeystring
Target profile key for formatting
project.get_stateGet full structured project state including overview, objectives, decisions, constraints, and tasks.1 params

Get full structured project state including overview, objectives, decisions, constraints, and tasks.

Parameters* required
projectIdstring
Project ID (uses token-scoped project if omitted)
memory.searchSearch memory items by keyword or semantic query. Returns matching decisions, constraints, tasks, notes, and other memory items.5 params

Search memory items by keyword or semantic query. Returns matching decisions, constraints, tasks, notes, and other memory items.

Parameters* required
limitnumber
Maximum number of results to return
projectIdstring
Project ID (uses token-scoped project if omitted)
querystring
Search query to find relevant memory items
tagsarray
Filter by tags attached to memory items
typesarray
Filter by memory types: decision, constraint, task, note, artifact, requirement
memory.addAdd a memory item to the project. Use this to persist decisions, constraints, tasks, or notes discovered during the session.5 params

Add a memory item to the project. Use this to persist decisions, constraints, tasks, or notes discovered during the session.

Parameters* required
contentstring
The memory content to store
projectIdstring
Project ID (uses token-scoped project if omitted)
tagsarray
Tags for categorizing and searching
titlestring
Short title for the memory item
typestring
Memory type: decision, constraint, task, note, artifact, or requirement
context.saveSave a structured session summary with decisions, progress, next steps, and constraints. Call this at the end of a coding session.7 params

Save a structured session summary with decisions, progress, next steps, and constraints. Call this at the end of a coding session.

Parameters* required
constraintsarray
Constraints discovered during the session
decisionsarray
Decisions made during the session
nextStepsarray
Tasks or next steps identified
notesarray
General notes or observations
progressstring
Description of progress made
projectIdstring
Project ID (uses token-scoped project if omitted)
summarystring
High-level session summary
memory.manageUpdate, delete, or archive an existing memory item by its ID.5 params

Update, delete, or archive an existing memory item by its ID.

Parameters* required
actionstring
Action to perform: update, delete, or archive
contentstring
New content (for update action)
memoryIdstring
The ID of the memory item to manage
tagsarray
New tags (for update action)
titlestring
New title (for update action)
project.updateUpdate a project's name or description.3 params

Update a project's name or description.

Parameters* required
descriptionstring
New project description
namestring
New project name
projectIdstring
Project ID (uses token-scoped project if omitted)
memory.recallSearch memory and retrieve project state in one call. Use before making decisions to check for existing constraints and context.2 params

Search memory and retrieve project state in one call. Use before making decisions to check for existing constraints and context.

Parameters* required
projectIdstring
Project ID (uses token-scoped project if omitted)
querystring
What to search for in project memory
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
AI & LLM Tools
Registryactive
TransportSSE
AuthRequired
UpdatedApr 13, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
rupert1987 avatar
Alya — The Hub for Autonomous Agents

io.github.rupert1987/alya-hub

Operator-as-agent MCP hub. 6 tools. First $5 free, then $0.001/call.
saajunaid avatar
junai Pipeline MCP

io.github.saajunaid/junai-mcp

Agentic pipeline orchestration MCP server for AI-driven development workflows.
sapiom avatar
Mcp Server

io.github.sapiom/mcp-server

AI agent tools: web search, browser, 400+ LLMs, image gen, TTS, phone verify. Pay-per-use.
saybanet avatar
Sayba Skill Market

io.github.saybanet/sayba-skill-market

Discover, invoke, publish, and rate AI Agent skills on Sayba platform
sbanerjee1875 avatar
FinanceGenius.AI

io.github.sbanerjee1875/financegenius

India's financial MCP — Indian cards, loans, FDs, MFs; EMI/SIP/tax calcs; NSE/BSE quotes; RAG.
shagarwal avatar
Databazaar

io.github.shagarwal/databazaar

Agent-first data marketplace — AI agents search, purchase, and sell datasets via MCP.