mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-07-02 23:15:41 +02:00
7db5ade777
Added comprehensive examples for Claude Code features including slash commands, subagents, memory, MCP protocol, skills, and plugins with documentation and quick reference guides. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
658 B
JSON
30 lines
658 B
JSON
{
|
|
"mcpServers": {
|
|
"github": {
|
|
"command": "npx",
|
|
"args": ["@modelcontextprotocol/server-github"],
|
|
"env": {
|
|
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
|
|
}
|
|
},
|
|
"database": {
|
|
"command": "npx",
|
|
"args": ["@modelcontextprotocol/server-database"],
|
|
"env": {
|
|
"DATABASE_URL": "${DATABASE_URL}"
|
|
}
|
|
},
|
|
"slack": {
|
|
"command": "npx",
|
|
"args": ["@modelcontextprotocol/server-slack"],
|
|
"env": {
|
|
"SLACK_TOKEN": "${SLACK_TOKEN}"
|
|
}
|
|
},
|
|
"filesystem": {
|
|
"command": "npx",
|
|
"args": ["@modelcontextprotocol/server-filesystem", "/home/user/projects"]
|
|
}
|
|
}
|
|
}
|