Guidance on using and integrating official reference servers. Use when building custom servers or deploying standard configurations. For server listings, see mcp-server-registry.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add tuliosousapro/SaaS-blueprint --skill mcp-reference-servers --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Mcp Reference Servers?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/tuliosousapro-mcp-reference-servers)More formats (shields.io, HTML) on the badges page.
---
name: mcp-reference-servers
description: Guidance on using and integrating official reference servers. Use when building custom servers or deploying standard configurations. For server listings, see mcp-server-registry.
---
# 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
[MCP Reference Servers GitHub](https://github.com/modelcontextprotocol/servers)
## Instructions
### 1. Identify Target Server
- Review the `src` directory 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.md` within 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
```json
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-name"],
"env": {
"ENV_VAR": "value"
}
}
}
}
```
## Quality Gates
- Use `npx` for 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_tools` command after initialization.
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!