skills/automation/hosted-mcp-catalog/SKILL.md
Use when the user says 'what MCP servers', 'find an MCP for', 'hosted MCP', 'list MCP servers', 'MCP catalog', 'available MCP tools', or needs to discover zero-setup hosted MCP servers they can use immediately. Do NOT use for building MCP servers or configuring local MCP.
npx skillsauth add cwinvestments/memstack memstack-automation-hosted-mcp-catalogInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Reference guide for zero-setup hosted MCP servers that require no API keys, no local install — just point any MCP client at the URL.
| Trigger | Status | |---------|--------| | User says "what MCP servers" or "find an MCP for" | ACTIVE | | User says "hosted MCP" or "MCP catalog" | ACTIVE | | User says "available MCP tools" or "list MCP servers" | ACTIVE | | User wants to BUILD an MCP server | NOT this skill — use mcp-builder | | User wants to configure local MCP | NOT this skill — check .mcp.json docs |
Hosted MCP servers run remotely — no local install needed. Add the URL to your MCP client config and the tools are available immediately.
In Claude Code — add to .mcp.json:
{
"mcpServers": {
"server-name": {
"type": "url",
"url": "https://example.com/mcp"
}
}
}
In Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"server-name": {
"url": "https://example.com/mcp"
}
}
}
These are maintained by major platforms and generally stable:
| Server | URL | Tools | Use Case |
|--------|-----|-------|----------|
| Vercel | https://mcp.vercel.com | Deploy, logs, env vars, projects | Vercel deployment management |
| Supabase | https://mcp.supabase.com/mcp | DB queries, migrations, RLS | Database management |
| Sentry | https://mcp.sentry.dev/mcp | Issues, errors, performance | Error tracking |
| Stripe | https://mcp.stripe.com | Payments, customers, invoices | Payment processing |
| Linear | https://mcp.linear.app/mcp | Issues, projects, cycles | Project management |
| Slack | https://mcp.slack.com/mcp | Messages, channels, search | Team communication |
| Greptile | https://api.greptile.com/mcp | Codebase search, understanding | Code intelligence |
Note: Most official servers require OAuth authentication on first use. Claude Code handles this automatically — you'll get a browser prompt to authorize.
When the user needs an MCP server, help them find the right one:
| User wants to... | Recommended MCP | |-------------------|-----------------| | Query a database | Supabase | | Track errors/bugs | Sentry | | Deploy code | Vercel | | Process payments | Stripe | | Manage issues/tickets | Linear | | Send team messages | Slack | | Search codebases | Greptile |
Generate the .mcp.json entry for the chosen server:
{
"mcpServers": {
"<server-name>": {
"type": "url",
"url": "<server-url>"
}
}
}
After adding, restart Claude Code and verify:
When the catalog above doesn't cover the user's need:
| Resource | URL | Description | |----------|-----|-------------| | Anthropic MCP Registry | https://github.com/modelcontextprotocol/servers | Official MCP server list | | Smithery | https://smithery.ai | MCP server marketplace | | MCP.so | https://mcp.so | Community MCP directory | | Glama | https://glama.ai/mcp/servers | Curated MCP catalog |
MCP Server: [name]
URL: [endpoint]
Auth: [OAuth / API key / None]
Tools available: [list of key tools]
Config to add to .mcp.json:
{
"mcpServers": {
"[name]": {
"type": "url",
"url": "[endpoint]"
}
}
}
Restart Claude Code after adding.
tools
Use when the user says 'save diary', 'log session', 'wrapping up', or at end of a productive session.
tools
Use when the user says 'submit to marketplace', 'publish my skill', 'share this skill', 'list on marketplace', 'submit plugin', 'publish to community', or needs to submit a skill or plugin to a community marketplace via PR. Do NOT use for building skills or writing plugin code.
development
Use when the user says 'write browser tests', 'test this page', 'playwright test', 'e2e test', 'end to end test', 'browser test', 'test the UI', or needs Playwright-based browser testing for a web application. Do NOT use for unit tests, API tests, or non-browser testing.
development
Use when the user says 'teach me', 'explain as you go', 'mentor mode', 'walk me through', 'help me learn', 'explain why', 'learning mode', or wants real-time plain language narration of decisions and tradeoffs while building. Do NOT use for code review or debugging.