Install
openclaw skills install mcp-server-packManaged 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.
openclaw skills install mcp-server-packOne subscription gives you access to a curated set of production-ready MCP servers. No need to find, build, or maintain them yourself.
| Server | Purpose | Access |
|---|---|---|
| filesystem-secure | File system access with sandbox (chroot) | Read/write within allowed roots |
| memory-enhanced | Memory server with WAL + compaction survival | Persistent JSON store |
| github | GitHub API integration (issues, PRs, repos, search) | Requires GitHub token |
| postgres | PostgreSQL read-only queries | Requires DB connection string |
| websearch | Web search via DuckDuckGo + Brave | No API key needed |
| rss | RSS/Atom feed aggregator | Public feeds |
mcp configdocker-compose.yml and manages lifecycle{}
Returns list of available servers with status (cloud_available, self_hosted_available, description).
{
"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": "..."}
}
}
}
}
Cloud includes:
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.