Magento MCP server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"agento": {
"cwd": "/var/www/html/magento",
"args": [
"/var/www/html/magento/bin/magento",
"agento:mcp"
],
"command": "php"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Transform your Magento development workflow with AI-powered tools! 🚀
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for Agento_MCP and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Transform your Magento development workflow with AI-powered tools! 🚀
Agento MCP brings the power of Model Context Protocol (MCP) to Magento 2, enabling seamless AI integration with Cursor IDE, Claude, and other AI assistants. Execute SQL queries, manage cache, and access 100+ magerun commands - all through natural language in your IDE.
composer require genaker/agento-mcp
php bin/magento module:enable Agento_Core
php bin/magento setup:upgrade
php bin/magento cache:clean
app/code/Agento/Corephp bin/magento module:enable Agento_Core
php bin/magento setup:upgrade
php bin/magento cache:clean
Agento integrates with n98-magerun2 for additional Magento CLI tools. To install:
cd /var/www/html/magento
curl -sS -o bin/n98-magerun2.phar https://files.magerun.net/n98-magerun2.phar
chmod +x bin/n98-magerun2.phar
Verify installation:
php bin/n98-magerun2.phar --version
For more information, visit: https://github.com/netz98/n98-magerun2
Check that the commands are available:
php bin/magento list | grep agento
You should see:
agento:query - Execute SQL queryagento:cache:clear - Clear cacheagento:mcp - Start MCP serveragento:magerun:install - Install n98-magerun2agento:cursor:install - Install Cursor MCP server configurationYou should see:
agento:cache:clear - Clear Magento cacheagento:query - Execute SQL queryagento:quick - Clear cache and run queryagento:mcp - Start MCP serverphp bin/magento agento:query --query "SELECT * FROM admin_user LIMIT 5"
With different output formats:
# Table format (default)
php bin/magento agento:query --query "SELECT * FROM admin_user LIMIT 5" --format table
# JSON format
php bin/magento agento:query --query "SELECT * FROM admin_user LIMIT 5" --format json
# CSV format
php bin/magento agento:query --query "SELECT * FROM admin_user LIMIT 5" --format csv
Using a different database connection:
php bin/magento agento:query --query "SELECT * FROM admin_user" --connection indexer
# Clear all cache
php bin/magento agento:cache:clear
# Clear specific cache type
php bin/magento agento:cache:clear --type config
Run the automated installer:
php bin/magento agento:cursor:install
This command will: