MCP Server Pack

MCP Tools

Managed MCP servers: filesystem-secure, memory-enhanced, github, postgres, websearch, rss. Provides connection details and auto-config for OpenClaw agents. Self-hosted option included; cloud hosting available for $29/mo.

Install

openclaw skills install mcp-server-pack

MCP Server Pack

One subscription gives you access to a curated set of production-ready MCP servers. No need to find, build, or maintain them yourself.

Included Servers

ServerPurposeAccess
filesystem-secureFile system access with sandbox (chroot)Read/write within allowed roots
memory-enhancedMemory server with WAL + compaction survivalPersistent JSON store
githubGitHub API integration (issues, PRs, repos, search)Requires GitHub token
postgresPostgreSQL read-only queriesRequires DB connection string
websearchWeb search via DuckDuckGo + BraveNo API key needed
rssRSS/Atom feed aggregatorPublic feeds

How It Works

Option A: Cloud Hosted (Subscription)

  • We host the MCP servers on our infrastructure
  • You get a unique connection URL (wss://mcp.openclaw.ai/server)
  • No setup — just add to your OpenClaw mcp config
  • Usage metered, included in $29/mo

Option B: Self-Hosted (Free with skill)

  • The skill downloads Docker images or binaries
  • You run them locally (Docker recommended)
  • Skill provides docker-compose.yml and manages lifecycle
  • No recurring fee, but you manage infrastructure

Tools

mcp_list

{}

Returns list of available servers with status (cloud_available, self_hosted_available, description).

mcp_config_generate

{
  "servers": ["filesystem-secure", "github"]
}

Returns OpenClaw mcp configuration JSON:

{
  "mcp": {
    "servers": {
      "filesystem-secure": {
        "command": "docker",
        "args": ["run", "-i", "--rm", "-v", "/path/to/allowed:/data", "openclaw/mcp-filesystem-secure"]
      },
      "github": {
        "transport": "stdio",
        "command": "npx",
        "args": ["-y", "mcp-github"],
        "env": {"GITHUB_TOKEN": "..."}
      }
    }
  }
}

Pricing

  • Cloud access: $29/mo per agent (unlimited server usage)
  • Self-hosted: Free (you run the servers yourself)

Cloud includes:

  • 24/7 uptime SLA (99.5%)
  • Automatic updates
  • Scalable throughput
  • Support via ClawHub DM

FAQ

Q: Can I mix cloud and self-hosted?
A: Yes. Use mcp_config_generate to get configs for hybrid setups.

Q: Is data sent to cloud?
A: For cloud servers yes, but encrypted in transit (TLS). For filesystem, your data stays local unless you mount remote volumes.

Q: How do I get a GitHub token for github server?
A: Create a fine-grained PAT with issues:read, pull_requests:read, repo:status scopes.

Q: Can I add my own MCP servers?
A: Yes, the skill supports custom entries via mcp_config_append.


This pack turns MCP from a curiosity into a production integration platform.