MCP
MCP Listings
Where to find MCP servers and how to evaluate them before connecting.
MCP has a fast-moving ecosystem. Treat public listings as discovery tools, not as trust signals. Review the server source, permissions, maintenance state, and credential scope before adding it to a Facio runtime.
Listings and directories
| Directory | Link |
|---|---|
| Official MCP servers repository | github.com/modelcontextprotocol/servers |
| MCP documentation | modelcontextprotocol.io |
| Smithery | smithery.ai |
| Glama MCP directory | glama.ai/mcp/servers |
| PulseMCP | pulsemcp.com/servers |
| MCP.so | mcp.so |
| MCP Market | mcpmarket.com |
Evaluation checklist
- Is the server source public and maintained?
- Does it run local code through
stdio, or call a hosted endpoint? - Which account scopes does it request?
- Can credentials be passed through env or headers with
${credentials.KEY}placeholders? - Does the server expose destructive tools such as delete, write, deploy, send, or purchase?
- Should
enabledToolsnarrow the available tools instead of['*']? - Should tool policy require approval for this server's tools?
Safer first configuration
For high-impact servers, start with a narrow tool list:
{
"enabledTools": ["search", "read", "list"]
}After the first audit review, expand tool access only when the workflow needs it.