npm @shakaran/symfony-agent-mcpstdioMITupdated 8d ago
------------------|----------------------------------------------------------------| | Claude Code | Run claude mcp add โ setup | | Claude Desktop | Add to claudedesktopconfig.json โ setup | | Cursor | Add to .cursor/mcp.json โ setup | | VS Code Copilot | Add to .vscode/mcp.json โ setup | | Any MCP client | stdio transport, command: npx @shakaran/symfony-agent-mcp |
What can you do with Symfony Agent MCP?
symfony-agent-mcp
Features โข Quick Start โข Integration โข Usage โข Documentation โข Contributing โข License
A production-ready Model Context Protocol (MCP) server for Symfony applications. Gives AI assistants deep, read-only introspection into your entire Symfony codebase โ routes, controllers, services, entities, database schema, migrations, events, forms, security, Doctrine, Messenger, Twig, API Platform, and much more.
| Client | Install |
|---|---|
| Claude Code | Run claude mcp add โ setup |
| Claude Desktop | Add to claude_desktop_config.json โ setup |
| Cursor | Add to .cursor/mcp.json โ setup |
| VS Code Copilot | Add to .vscode/mcp.json โ setup |
| Any MCP client | stdio transport, command: npx @shakaran/symfony-agent-mcp |
Features
1,677 Tools across 16 Categories
Available tool categories (16 categories, 1,677 tools total, ~164,615 tokens if all active)
Category โ Tools โ Est. tokens โ Description
โโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
symfony-core โ 548 tools โ ~ 53939 tokens โ Routes, services, controllers, events, commands, bundles, DI container, kernel
database โ 176 tools โ ~ 17121 tokens โ Entities, migrations, Doctrine ORM, relationships, query patterns, indexes, DBAL
security โ 132 tools โ ~ 12950 tokens โ Voters, firewalls, authenticators, JWT, OAuth, CSRF, access control, secrets vault
frontend โ 121 tools โ ~ 11568 tokens โ Twig, translations, asset mapper, Symfony UX, Turbo, live components, Webpack
testing โ 110 tools โ ~ 10559 tokens โ PHPUnit, Behat, Cypress, Playwright, Psalm, PHPStan, Rector, static analysis
integrations โ 106 tools โ ~ 10939 tokens โ Stripe, Slack, Sentry, Elasticsearch, Twilio, SendGrid, Mailgun, Datadog, OpenAI
serializer โ 91 tools โ ~ 9031 tokens โ Serializer, validation, forms, constraints, DTOs, transformers, normalizers
messaging โ 87 tools โ ~ 8455 tokens โ Messenger, notifier, webhooks, Mercure, mailer, transports, stamps, failure handling
api โ 68 tools โ ~ 6438 tokens โ API Platform, OpenAPI, GraphQL, REST patterns, versioning, rate limits, Nelmio
infrastructure โ 68 tools โ ~ 6794 tokens โ Docker, CI/CD, Kubernetes, Terraform, Helm, Nginx, serverless, cloud platforms
cache-sessions โ 62 tools โ ~ 5945 tokens โ Cache pools, HTTP cache, sessions, rate limiter, lock, cache warmers, OPcache
config โ 35 tools โ ~ 3157 tokens โ Environment config, framework settings, Monolog, CORS, locale, feature flags
code-quality โ 25 tools โ ~ 2447 tokens โ Profiler, dead code detection, dependency graph, accessibility, code metrics
cloud-aws โ 18 tools โ ~ 1945 tokens โ AWS S3, SES, Cognito, ECS, Lambda/Bref, Parameter Store, Secrets Manager, CloudFront
cloud-other โ 16 tools โ ~ 1851 tokens โ Azure Blob/Pipelines, Google Cloud Run/Storage, Firebase, DigitalOcean, Consul
queues โ 14 tools โ ~ 1476 tokens โ RabbitMQ, Kafka, SQS FIFO/DLQ, Pusher, Redis pub/sub and streams
To activate a category: call activate_category(category: "<key>")
To search for specific tools: call search_tools(query: "what you want to do")
Security-first design
- Read-only โ never writes, modifies, or executes anything
- Auto-redaction โ passwords, tokens, API keys, and database credentials are replaced with
[REDACTED]before any data reaches the AI - DLP pipeline โ multi-layer Data Loss Prevention scanner (regex patterns + structural detection for credit cards, JWTs, SSH keys, cloud credentials, etc.)
- Path validation โ directory traversal attacks are blocked at the input layer
- No code execution โ PHP files are parsed statically (no
eval, no PHP runtime) - No network calls โ all data comes from local files only
- Prompt injection filter โ tool output is scanned for injection patterns before being forwarded to the AI
Quick Start
Option A: npx (no install required)
npx @shakaran/symfony-agent-mcp
Option B: Install globally
npm install -g @shakaran/symfony-agent-mcp
symfony-agent-mcp
Option C: From source
git clone https://github.com/shakaran/symfony-agent-mcp
cd symfony-agent-mcp
pnpm install
pnpm build
pnpm start
See GETTING_STARTED.md for a step-by-step guide including Node.js setup, troubleshooting, and first-use verification.
Integration
One-click Install
| Client | Install |
|---|---|
| Cursor | |
| VS Code | |
| VS Code Insiders | |
| Windsurf | |
| Claude Code | |
| Claude Desktop |
Claude Code
Run once to register the server:
# npx (no local install required)
claude mcp add symfony -- npx @shakaran/symfony-agent-mcp
# Or from a local source build
claude mcp add symfony -- node /path/to/symfony-agent-mcp/dist/server.js
To make it available globally across all projects, add the --scope user flag:
claude mcp add --scope user symfony -- npx @shakaran/symfony-agent-mcp
Claude Desktop
Add to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"symfony": {
"command": "npx",
"args": ["@shakaran/symfony-agent-mcp"]
}
}
}
Cursor
Add to .cursor/mcp.json:
{
"symfony": {
"command": "npx",
"args": ["@shakaran/symfony-agent-mcp"]
}
}
VS Code Copilot
Add to .vscode/mcp.json:
{
"servers": {
"symfony": {
"type": "stdio",
"command": "npx",
"args": ["@shakaran/symfony-agent-mcp"]
}
}
}
Usage
Every tool accepts an app_path parameter pointing to the root of your Symfony application:
list_routes(app_path: "/var/www/myapp")
โ Found 42 routes: GET /api/users [api_users], POST /login [app_login], โฆ
get_entity_details(app_path: "/var/www/myapp", entity_name: "User")
โ Entity: User | Table: users
Properties: id (int, PK), email (string 180), isActive (bool)
Relationships: OneToMany โ Post (author)
get_error_summary(app_path: "/var/www/myapp")
โ Last 24h: 3 CRITICAL, 12 ERROR, 47 WARNING
get_code_quality_report(app_path: "/var/www/myapp")
โ God classes: UserManager (1240 lines), dead services: 4, N+1 risks: 7
Example prompts you can use with Claude:
- "Show me all routes with POST methods and their controllers"
- "Which services are tagged with
doctrine.event_listener?" - "List the last 50 lines of the production log"
- "Are there any circular dependencies in the service container?"
- "What Doctrine entities have relationships with User?"
- "Show me the migration history and any destructive migrations"
- "Which controllers have no security attributes?"
Configuration
All configuration is done via environment variables passed to the MCP server process.
Tool Discovery
| Variable | Default | Description |
|---|---|---|
SYMFONY_MCP_DYNAMIC_TOOLS |
true |
Enable dynamic tool discovery. When true, tools/list returns only 5 meta-tools instead of all 1,677. Set to false to restore the legacy behaviour (all tools always visible). |
SYMFONY_MCP_TOKEN_BUDGET |
40000 |
Maximum estimated tokens that can be activated per session. Activation is blocked when this limit would be exceeded; pass force=true in activate_category to override. |
Security & Access
| Variable | Default | Description |
|---|---|---|
SYMFONY_MCP_ALLOWED_PATHS |
(any) | Colon-separated list of absolute app paths the server may inspect. Example: /var/www/app1:/var/www/app2 |
SYMFONY_MCP_REQUIRE_SYMFONY |
true |
Set to false to skip Symfony project validation (useful for testing). |
SYMFONY_MCP_ALLOWED_TOOLS |
(all) | Comma-separated allowlist of tool names. Only listed tools are callable. |
SYMFONY_MCP_BLOCKED_TOOLS |
(none) | Comma-separated denylist. Takes precedence over the allowlist. |
SYMFONY_MCP_SIGNING_SECRET |
(off) | 32+ character secret for request signing. Enables per-request authentication. |
SYMFONY_MCP_SESSION_SECRET |
(off) | Secret for session token generation. |
SYMFONY_MCP_SESSION_TOKEN |
(off) | Token to validate on incoming requests. |
SYMFONY_MCP_SESSION_STRICT |
false |
Set to true to reject requests without a valid session token. |
SYMFONY_MCP_SESSION_WINDOW |
300 |
Session token validity window in seconds. |
Rate Limiting
| Variable | Default | Description |
|---|---|---|
SYMFONY_MCP_RATE_LIMIT |
60 |
Max requests per window. Set to 0 to disable. |
SYMFONY_MCP_RATE_WINDOW_MS |
60000 |
Rate limit window in milliseconds (1 minute). |
SYMFONY_MCP_RATE_BURST |
10 |
Max burst requests in 1 second. |
Transport
| Variable | Default | Description |
|---|---|---|
SYMFONY_MCP_HTTP_PORT |
(off) | Port for HTTP/SSE transport. When set, starts an HTTP server in addition to stdio. |
SYMFONY_MCP_STDIO |
true |
Set to false to disable stdio transport (useful when running HTTP-only). |
SYMFONY_MCP_TOOL_TIMEOUT_MS |
30000 |
Per-tool execution timeout in milliseconds. |
Example: Claude Code with dynamic tools disabled
{
"mcpServers": {
"symfony": {
"command": "npx",
"args": ["@shakaran/symfony-agent-mcp"],
"env": {
"SYMFONY_MCP_DYNAMIC_TOOLS": "false"
}
}
}
}
Example: token budget increased to 80 000 tokens
{
"mcpServers": {
"symfony": {
"command": "node",
"args": ["/path/to/symfony-agent-mcp/dist/server.js"],
"env": {
"SYMFONY_MCP_TOKEN_BUDGET": "80000"
}
}
}
}
Local Install (from source)
Use this when you want to run the server from a local clone (no npm publish needed).
# 1. Clone the repo
git clone https://github.com/shakaran/symfony-agent-mcp
cd symfony-agent-mcp
# 2. Install dependencies (Node.js โฅ 22 required)
pnpm install # or: npm install
# 3. Build TypeScript โ dist/
pnpm build # or: npm run build
# 4. Test the server responds
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | node dist/server.js
Then configure your MCP client to point at the built file:
Claude Code (run once):
claude mcp add symfony -- node /absolute/path/to/symfony-agent-mcp/dist/server.js
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"symfony": {
"command": "node",
"args": ["/absolute/path/to/symfony-agent-mcp/dist/server.js"]
}
}
}
VS Code (.vscode/mcp.json):
{
"servers": {
"symfony": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/symfony-agent-mcp/dist/server.js"]
}
}
}
Tip: After rebuilding (
pnpm build), restart your MCP client to pick up the changes.
What It Reads
The server reads files directly from your Symfony app โ no database connection, no PHP runtime needed:
config/routes.yaml,config/routes/*.yamlโ YAML routes- PHP 8
#[Route]attributes on controllers insrc/Controller/ config/services.yamlโ DI container servicesconfig/packages/*.yamlโ Framework, security, doctrine, messenger, mailer configsrc/Entity/*.phpโ Doctrine entity files (PHP 8 attributes + annotations)var/log/*.logโ Application logsmigrations/,src/Migrations/โ Doctrine migration filescomposer.json,composer.lockโ Package info.env,.env.local,.env.*.localโ Environment variables (sensitive values auto-redacted)
Symfony Compatibility
| Symfony | PHP | ORM mapping |
|---|---|---|
| 5.4 LTS | 8.0+ | Annotations or Attributes |
| 6.x | 8.0+ | Attributes |
| 7.x | 8.2+ | Attributes |
| 8.x | 8.2+ | Attributes |
Requirements
- Node.js โฅ 22.0.0
- pnpm โฅ 11.0.0 (or npm/yarn for development)
Development
pnpm install
pnpm dev # watch mode (TypeScript โ dist/)
pnpm test # run all tests
pnpm lint # ESLint
pnpm typecheck # tsc --noEmit
See DEVELOPMENT.md for the full development guide: architecture overview, adding new tools, testing strategy, and contribution guidelines.
Documentation
| Document | Description |
|---|---|
| GETTING_STARTED.md | Step-by-step setup, Node.js prerequisites, troubleshooting |
| ARCHITECTURE.md | System design, security pipeline, component overview, all 1,677 tools across 16 categories documented |
| DEVELOPMENT.md | Development workflow, adding tools, testing, contributing |
| SECURITY.md | Threat model, DLP pipeline, responsible disclosure policy |
| CHANGELOG.md | Release history and roadmap |
| PROJECT_SUMMARY.md | High-level project overview and statistics |
Contributing
Issues and pull requests are welcome at github.com/shakaran/symfony-agent-mcp.
Please read DEVELOPMENT.md before submitting a PR, and SECURITY.md for the responsible disclosure policy.
Project standards
| Standard | Status |
|---|---|
| OpenSSF Baseline | Level 1, 2 and 3 |
| OpenSSF Best Practices | Passing |
| OpenSSF Scorecard | 7.4 / 10 |
| Supply chain | Published from CI with SLSA provenance and SBOM |
| Reproducible build | Verified in CI, byte-identical across builds |
| Code scanning | Zero open alerts |
| Secret scanning | Zero open alerts |
| Tests | 1,019 โ src/utils/ at 100%, transport at 99.5% |
| Licensing | MIT, SPDX headers on every source file |
| Sign-off | Developer Certificate of Origin, checked in CI |
See SECURITY.md for the threat model, the assurance case and the remediation thresholds, and ROADMAP.md for what is planned.
License
MIT ยฉ รngel Guzmรกn Maeso
Install
Add Symfony Agent MCP to your client. Pick the one you use.
claude mcp add symfony-agent-mcp -- npx -y @shakaran/symfony-agent-mcpcodex mcp add symfony-agent-mcp -- npx -y @shakaran/symfony-agent-mcpamp mcp add symfony-agent-mcp -- npx -y @shakaran/symfony-agent-mcp{
"mcpServers": {
"symfony-agent-mcp": {
"command": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"symfony-agent-mcp": {
"command": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"symfony-agent-mcp","command":"npx","args":["-y","@shakaran/symfony-agent-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"symfony-agent-mcp": {
"command": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"symfony-agent-mcp": {
"command": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"symfony-agent-mcp": {
"command": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"symfony-agent-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"symfony-agent-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@shakaran/symfony-agent-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @shakaran/symfony-agent-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
2 tools
Symfony Agent MCP exposes 2 tools to a connected agent.
- SYMFONY_MCP_DYNAMIC_TOOLS
- `true`
- SYMFONY_MCP_TOKEN_BUDGET
- `40000`
Score
73 / 100
Good
- Documentation25/25
- Maintenance19/25
- Trust13/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 2 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.2Latest | Aug 23, 2026 |