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

Openclaw Agent Tools

baronsengir007/openclaw-agent-tools
HTTPregistry active
Summary

Bundles four live agent services into MCP tools: real-time weather via OpenMeteo, GitHub repo search, currency conversion through open.er-api.com, and Solana wallet trust scoring against mainnet-beta RPC. The interesting bit is the architecture pattern. Instead of wrapping APIs directly, each tool hits a backend agent service that can be swapped or upgraded without touching the MCP interface. The trust scoring tool reads on-chain signals to vet unknown wallets before you delegate tasks or payments. Runs via npx or as a public HTTP endpoint with streamable transport. No API keys required for any of the four tools. Self-host with Node or Docker if you want to run your own instance.

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 →

OpenClaw Agent Tools — MCP Server

A Model Context Protocol server that bundles 4 real-world agent capabilities as MCP tools. Each tool calls a live backend agent service — making agent-to-agent collaboration invisible to the LLM using the tools.

Tools

ToolDescriptionBackend
agent_weatherReal-time weather + 3-day forecast for any cityOpenMeteo (free, no API key)
agent_code_searchGitHub repository search by topic or descriptionGitHub Search API
agent_currencyCurrency conversion & exchange ratesopen.er-api.com (free, no API key)
agent_trust_scoreSolana wallet trust scoring (on-chain signals)Solana mainnet-beta RPC

Why this server?

Most MCP tools are wrappers around single APIs. This server demonstrates a different pattern: agents as tools. Each tool is backed by a running agent service that can be upgraded independently without changing the MCP interface.

The trust scoring tool is particularly useful before delegating tasks or micropayments to unknown agent wallets — a key primitive in the emerging agent economy.

Usage

Claude Desktop / Claude Code

Add to your claude_desktop_config.json or MCP config:

{
  "mcpServers": {
    "openclaw-agent-tools": {
      "command": "npx",
      "args": ["-y", "openclaw-agent-tools"]
    }
  }
}

Remote HTTP (Streamable HTTP transport)

The server also runs as a public HTTP endpoint supporting the MCP Streamable HTTP transport:

POST http://178.104.131.84:8087/mcp
Accept: application/json, text/event-stream
Content-Type: application/json

Example: Weather

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": "1",
  "params": {
    "name": "agent_weather",
    "arguments": {"query": "Amsterdam"}
  }
}

Example: Trust Score

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": "2",
  "params": {
    "name": "agent_trust_score",
    "arguments": {"wallet_address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"}
  }
}

Self-hosting

git clone https://github.com/baronsengir007/openclaw-agent-tools
cd openclaw-agent-tools
npm install
node server.js --http   # HTTP mode on port 3000
# or
node server.js --stdio  # stdio mode for Claude Desktop

Docker

docker build -t openclaw-agent-tools .
docker run -d -p 3000:3000 openclaw-agent-tools

License

MIT — OpenClaw Research

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 ToolsSearch & Web CrawlingFinance & Commerce
Registryactive
TransportHTTP
UpdatedApr 16, 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