DEV Community

goldbean
goldbean

Posted on

How to Connect Claude Desktop to 100+ AI Tools Using a Single MCP Server

If you're using Claude Desktop for coding, research, or content creation, you probably know about MCP (Model Context Protocol) servers. They let Claude call external tools — but most MCP servers only do one thing. Today I'll show you how to connect Claude Desktop to a single MCP server that gives you access to 100+ AI tools, from OCR to text-to-speech to image generation.

What is GoldBean?

GoldBean is a pay-per-call MCP server that aggregates AI tools from multiple providers. Instead of managing 10 different API keys and billing dashboards, you connect once and Claude can route tool calls to the right backend service automatically.

Supported tools include:

  • OCR (document & image text extraction)
  • TTS (text-to-speech)
  • ASR (automatic speech recognition)
  • Translation
  • LLM Chat
  • Image recognition & generation
  • And 90+ more

Connecting Claude Desktop

  1. Open Claude Desktop and go to SettingsDeveloperEdit Config
  2. Add the following MCP server configuration:
{
  "mcpServers": {
    "goldbean": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-sse", "https://goldbean-api.xyz/sse"]
    }
  }
}
Enter fullscreen mode Exit fullscreen mode
  1. Restart Claude Desktop. You should see the GoldBean tools appear in the tool picker.

How Pricing Works

GoldBean uses a pay-per-call model:

  • Free tier: 50 calls per day
  • Paid calls: As low as $0.01 per request
  • Payment methods: Base USDC (via x402 protocol), PayPal, or Alipay
  • No KYC required for crypto payments

This means you can experiment for free, and only pay when you scale beyond the daily limit.

Example Use Case

I recently needed to extract text from a 20-page scanned PDF, generate a voiceover for the summary, and translate it to Spanish. Instead of signing up for three separate services, I just asked Claude to do it — all through the GoldBean MCP server.

Try It Out

Have you tried building with MCP servers yet? Drop a comment with your favorite use case.


This post was written to share a useful developer tool I built. No affiliation with Claude Desktop or Anthropic.

Top comments (0)