Dealership AI MCP Server
Provides deployment overview including Docker configurations and Cloud Run settings for all repositories.
Provides pattern-aware code generation for FastAPI endpoints, including scaffolding new endpoints matching existing conventions, and summarizing API surfaces.
Discovers shared Firestore models and API contracts across repositories, and provides service mapping including Firestore connections.
Offers comprehensive Git operations: status, diff, log, branch, commit, push, pull, stash, and batch operations across multiple repositories.
Supports repository cloning, pulling, creating pull requests, and creating new GitHub repositories from templates.
Generates Pydantic models following codebase conventions for data validation.
Enables scaffolding of React components with proper imports, styling, and hooks, matching codebase patterns.
Scaffolds projects using the React + Vite template for frontend development.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Dealership AI MCP ServerWhat's the architecture of the voice-backend-v2 repo?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Dealership AI MCP Server
MCP server that gives AI agents superpowers when working across the Dealership AI / AllyAI codebase. Instead of spending 20+ tool calls exploring a repo, agents get instant architecture understanding, pattern-aware code generation, cross-repo search, and one-call validation.
Why This Exists
Giving an agent direct repo access is slow — they spend most of their time exploring, reading files to understand patterns, and manually validating. This MCP server eliminates that overhead:
Without MCP Server | With MCP Server |
20+ reads to understand a repo |
|
Read 5 files to learn the pattern |
|
Search repos one at a time |
|
Write boilerplate from scratch |
|
Manual lint + type check + test |
|
No cross-repo awareness |
|
Setup
pip install -e .Adding to Claude Code
{
"mcpServers": {
"dealership-ai": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/path/to/mcp-server"
}
}
}Adding to Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"dealership-ai": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/path/to/mcp-server"
}
}
}Tool Categories
Context Tools — Instant Codebase Understanding
get_codebase_summary(repo)— Full architecture: framework, endpoints, models, deps, env vars, biggest filesextract_patterns(repo)— Coding conventions: import style, endpoint patterns, error handling, model patterns, namingget_function_context(repo, func)— Complete context: definition, callers, callees, tests, importsget_api_surface(repo)— All endpoints with request/response types and router registrationget_dependency_graph(repo)— Internal module import graph (foundational vs leaf modules)
Scaffold Tools — Pattern-Aware Code Generation
scaffold_fastapi_endpoint(...)— Generate endpoint matching the repo's exact patternsscaffold_react_component(...)— Generate component with proper imports, styling, hooksscaffold_pydantic_model(...)— Generate model matching conventionsscaffold_test(repo, file)— Generate test file for any source filescaffold_from_example(repo, template_file, new_name, modifications)— Clone + modify any filecreate_new_repo(name, template, description)— Create new GitHub repo (fastapi/react-vite/python-service)
Cross-Repo Tools — Multi-Repo Operations
search_all_repos(pattern)— Search all 7 repos simultaneouslyget_service_map()— Discover how services connect: shared Firestore, env vars, external APIsfind_shared_models()— Find data models that appear across repos (API contracts)get_deployment_overview()— Docker, ports, Cloud Run config for all reposbatch_git_status()— Git status of all repos in one callbatch_git_pull()— Pull all repos at oncebatch_create_branch(name)— Create same branch across all repos
Validation Tools — Quality Before Committing
validate_repo(repo)— Full suite: syntax + lint + type check + testsvalidate_changes(repo)— Validate only uncommitted files (fast)check_syntax(repo, file)— Quick syntax check on one filecheck_imports(repo, file)— Verify all imports resolverun_tests(repo)— Run test suite
Core Tools — File, Git, Repo Management
File ops:
read_file,write_file,edit_file,delete_file,list_files,search_code,get_file_treeGit ops:
git_status,git_diff,git_log,git_branch,git_checkout,git_add,git_commit,git_push,git_pull,git_stash,create_pull_request,run_commandRepo ops:
list_repos,clone_repo,clone_all_repos,get_repo_info,pull_repo
Resources (Auto-Loaded Context)
repo://overview— Complete system architecture and how services connectrepo://conventions— Coding patterns across all reposrepo://quick-start— Step-by-step guide for agents
Prompts (Task Templates)
implement_feature(repo, description)— Guided feature implementationfix_bug(repo, description)— Guided bug fixingadd_endpoint(repo, description)— Guided endpoint additioncross_repo_change(description)— Guided multi-repo changes
Configured Repos
Repo | Language | Purpose |
voice-backend-v2 | Python | Voice AI agent for dealership phone calls |
admin-dashboard | Python | Admin panel API for dealership staff |
selinium-browser-automation | Python | Selenium appointment booking service |
chatbot-backend | Python | Multi-tenant AI chatbot backend |
firebase-backend | Python | Core REST API (users, conversations, tasks) |
workflow-builder | Python | NLP-driven campaign workflow engine |
ally-ai-production | TypeScript | Marketing/landing site (React + Vite) |
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Exploratory-Projects/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server