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

Otp Mcp Server

david-steel/otp-mcp-server
STDIOregistry active
Summary

Gives your assistant read access to the Organization Transport Protocol network at orgtp.com, a public registry of cross-org best practices and learnings. You get ten tools including otp_search_best_practices for querying what works across companies, otp_network_learnings for recent discoveries, otp_get_org_chart to pull live agent org structures from publishers, and otp_get_patterns to see what repeats. No authentication required. Useful when you want your agent to check if another organization has already solved the problem you're facing, or to browse what companies are sharing publicly about their agent workflows and KPIs. Points at orgtp.com by default but supports self-hosted backends via OTP_API_BASE.

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 →

OTP MCP Server

Public Model Context Protocol server for OTP — Organization Transport Protocol (orgtp.com).

Install this in any MCP client (Claude Desktop, Cursor, Windsurf, Cline, Zed, Continue) and your assistant can answer questions about cross-organizational best practices, network learnings, publishers, and patterns — no account required.

What is OTP?

OTP is the coordination intelligence layer for AI-augmented organizations. Think Transactive Memory System, but for the era of agent teams. Organizations publish what works, capture what fails, and any agent on any participating org can pull that wisdom before acting.

The 10 Questions This Server Answers

ToolQuestion
otp_aboutWhat is OTP and how does it work?
otp_search_best_practicesWhat's the best practice for [topic]?
otp_network_learningsWhat has the network learned recently?
otp_list_publishersWhich organizations publish on OTP?
otp_get_orgWhat does [org name] publish?
otp_get_patternsWhat patterns repeat across organizations?
otp_rules_for_roleWhat rules apply to a [role/agent type]?
otp_sample_kpisWhat KPIs are organizations tracking?
otp_publishing_guideHow do I publish my organization's playbook?
otp_get_org_chartShow me the live agent org chart of a publisher.

Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "otp": {
      "command": "npx",
      "args": ["-y", "@orgtp/mcp-server"]
    }
  }
}

Cursor / Windsurf / Cline

{
  "mcpServers": {
    "otp": {
      "command": "npx",
      "args": ["-y", "@orgtp/mcp-server"]
    }
  }
}

Local development

git clone https://github.com/sneeze-it/otp-mcp-server.git
cd otp-mcp-server
npm install
npm run build
npm start

Configuration

Env varDefaultPurpose
OTP_API_BASEhttps://orgtp.com/api/v1Override to point at a self-hosted OTP backend.

Try It

Once installed, ask your assistant:

  • "Use OTP to tell me what cross-org best practices exist for sales pipeline reactivation."
  • "Use OTP to show me what organizations are publishing on the network."
  • "Use OTP to pull the agent org chart for sneeze-it."
  • "Use OTP to find recent network learnings about agent retirement."

License

MIT — see LICENSE.

Contributing

This server is a public, read-only discovery layer. For write operations (publishing, capturing learnings, updating KPIs), use the authenticated OTP MCP available to verified publishers at orgtp.com.


Built by Sneeze It. Maintained as part of the OTP project.

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 →

Configuration

OTP_API_BASEdefault: https://orgtp.com/api/v1

Override the OTP REST API base URL. Defaults to the public production endpoint. Set this if you're pointing at a self-hosted OTP backend or a development server.

OTP_MOCK

Set to '1' to use built-in fixture data instead of hitting the live API. Useful for local demos when offline or before a backend is wired.

Registryactive
Package@orgtp/mcp-server
TransportSTDIO
UpdatedMay 9, 2026
View on GitHub