Coding Agent
Feature builder + reviewer
62K
installs
MCPs
filesystemgithubsentry
Setup steps
- 1.Scope filesystem access to a single project root.
- 2.Generate a GitHub fine-grained token with repo + issues read.
- 3.Optional: connect Sentry read token to triage production errors in-context.
Config
{
"mcpServers": {
"github": {
"env": {
"GITHUB_TOKEN": "…"
},
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"command": "npx"
},
"sentry": {
"env": {
"SENTRY_TOKEN": "…"
},
"args": [
"-y",
"@modelcontextprotocol/server-sentry"
],
"command": "npx"
},
"filesystem": {
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/you/code/project"
],
"command": "npx"
}
}
}