Mcp reference servers
Skill tuliosousapro/SaaS-blueprint/skills/mcp-reference-servers
BRAINIAC - SaaS Blueprint, NOT an APP. It's a comprehensive playbook and operating system designed for building, launching, and scaling a SaaS APP covering from MVP to Mass Scale. It is structured as a chronological and functional roadmap, containing over 80 specialized directories, each with its own PLAYBOOK.md.
npx -y skills add tuliosousapro/SaaS-blueprint --skill mcp-reference-serversAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Guidance on using and integrating official reference servers. Use when building custom servers or deploying standard configurations. For server listings, see mcp-server-registry.
SKILL.md
1.7 KB, as published. Nobody here has run it
MCP Reference Servers Skill
When to Use
- When building new MCP servers and needing a reference implementation.
- When the user wants robust, community-tested servers for common tools (Filesystem, Google Search, Fetch, etc.).
- When debugging MCP connection issues using standardized servers.
Reference
Instructions
1. Identify Target Server
- Review the
srcdirectory in the reference repository to see available servers. - Common servers include:
fetch: For web page scraping.filesystem: For local file access.google-search: For web searching capabilities.postgres: For database interaction.
2. Implementation & Setup
- Most reference servers are built with Node.js/TypeScript or Python.
- Follow the
README.mdwithin each sub-directory for build and run instructions. - Ensure the appropriate runtime (Node.js 18+ or Python 3.10+) is installed.
3. Usage via MCP Configuration
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-name"],
"env": {
"ENV_VAR": "value"
}
}
}
}
Quality Gates
- Use
npxfor quick access without local installation unless performance is a concern. - Keep environment variables secure in protected configuration files.
- Verify the server's capabilities via
list_toolscommand after initialization.