mcp-servers
PassModel Context Protocol integration for external tools (GitHub, filesystem, SPARQL).
(0)
54
1
1
Install Skill
Skills are third-party code from public GitHub repositories. SkillHub scans for known malicious patterns but cannot guarantee safety. Review the source code before installing.
Install globally (user-level):
npx skillhub install majiayu000/claude-skill-registry/mcp-serversInstall in current project:
npx skillhub install majiayu000/claude-skill-registry/mcp-servers --projectSuggested path: ~/.claude/skills/mcp-servers/
SKILL.md Content
---
name: mcp-servers
description: "Model Context Protocol integration for external tools (GitHub, filesystem, SPARQL)."
allowed_tools: "Read"
---
# MCP Server Integration
## Overview
Model Context Protocol connects LLMs to external tools:
- **GitHub**: Issues, PRs, repositories
- **Filesystem**: Enhanced file operations
- **Custom**: SPARQL, validation, domain-specific
## Configuration
In `.claude/settings.json`:
```json
{
"mcp_servers": {
"github": {
"command": "mcp-server-github",
"env": {"GITHUB_TOKEN": "${GITHUB_TOKEN}"}
},
"filesystem": {
"command": "mcp-server-filesystem",
"args": ["/home/user/ggen"]
}
}
}
```
## Status
Currently disabled in ggen (can be enabled per project needs).
## Reference
See `.claude/settings.json` mcp_servers section for configuration.