Uniware Vtiger MCP Server
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., "@Uniware Vtiger MCP ServerShow me my open deals"
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.
Uniware Vtiger MCP Server (Phase 1)
Read-only MCP server that connects Claude to Vtiger CRM for Uniware's Account Manager (AM) Copilot. Phase 1 exposes briefing tools for leads, deals, and overdue follow-ups.
Repository: https://github.com/Srimathi-8502/Mcp_Vtiger_claude
MCP tools
Tool | Description |
| Leads assigned to an AM (organisation, status, follow-up fields) |
| Open deals for an AM (organisation, stage, amount, last contacted, follow-up) |
| Leads and deals with follow-up date on or before today |
All tools take an owner argument — the Vtiger user ID (e.g. 19x5) agreed with your CRM admin.
Related MCP server: Oracle Sales MCP Server by CData
Requirements
Python 3.12+
Network access to your Vtiger instance (
VTIGER_BASE_URL)Vtiger API username and access key
Quick start
# Clone
git clone https://github.com/Srimathi-8502/Mcp_Vtiger_claude.git
cd Mcp_Vtiger_claude
# Virtual environment
python -m venv .venv
# Windows
.venv\Scripts\activate
# Linux / macOS
source .venv/bin/activate
pip install -r requirements.txt
# Configure
cp .env.example .env
# Edit .env with Vtiger credentials and MCP_API_KEY
# Run
set PYTHONPATH=src # Windows CMD
# export PYTHONPATH=src # Linux / macOS
vtiger-mcp
# or: uvicorn vtiger_mcp.main:app --host 0.0.0.0 --port 8000Server defaults to http://0.0.0.0:8000. MCP HTTP endpoint is served by FastMCP on the same app.
Environment variables
Copy .env.example to .env. Key settings:
Variable | Required | Description |
| Yes | Secret Claude sends as |
| No | Optional Bearer token (FastMCP native auth) |
| Yes | e.g. |
| Yes | Vtiger API user |
| Yes | Vtiger webservice access key |
| No | Comma-separated stages; empty = all deals for owner |
| Partial | CRM field API names; at least one follow-up date field required for |
Generate an API key:
python -c "import secrets; print(secrets.token_urlsafe(32))"See .env.example for the full list of field-mapping variables.
Confirmed Deals field mapping (Potentials module)
Deals use the Vtiger module Potentials (not Deals).
Briefing field | Vtiger API name | Env var |
Assigned AM |
|
|
Deal name |
|
|
Organization |
|
|
Deal stage |
|
|
Amount |
|
|
Last contacted |
|
|
Next follow-up date |
|
|
Next follow-up description |
|
|
Deal tool responses remap these to: owner, deal_name, organisation_name, stage, amount, last_contacted_date, next_followup_date, next_followup_description.
Health checks
Endpoint | Purpose |
| Liveness — always returns 200 if the process is up |
| Readiness — 200 when required config is present, 503 if degraded |
These paths do not require authentication.
Authentication
Requests to MCP endpoints must include one of:
X-API-Key: <MCP_API_KEY>Authorization: Bearer <MCP_API_KEY>(orMCP_AUTH_TOKENif set for FastMCP auth)
When registering the custom connector in Claude, use the deployed base URL and MCP_API_KEY.
Helper scripts
Run from the repo root with PYTHONPATH=src and .env loaded:
python scripts/connection_check.py # Vtiger login + MCP health probe
python scripts/mcp_check.py # MCP tool smoke test
python scripts/describe_fields.py # Inspect Vtiger module fields
python scripts/describe_raw.py # Full describe JSON for Leads/Potentials
python scripts/test_tools.py # Exercise CRM toolsDocker
docker build -t uniware-vtiger-mcp .
docker run --env-file .env -p 8000:8000 uniware-vtiger-mcpDeploy (Render)
render.yaml defines a web service:
Build:
pip install -r requirements.txtStart:
PYTHONPATH=src uvicorn vtiger_mcp.main:app --host 0.0.0.0 --port $PORTHealth:
/health
Set environment variables in the Render dashboard (or GitLab CI) — do not commit .env.
Project layout
src/vtiger_mcp/
main.py # FastMCP app, health routes, uvicorn entry
config.py # Settings from environment
middleware.py # API key validation
tools/crm.py # MCP tool definitions
vtiger/client.py # Vtiger webservice client
scripts/ # Local verification scripts
docs/ # Technical architecture (TECHNICAL.md)See docs/TECHNICAL.md for architecture and request flow.
Security
Never commit
.envor Vtiger access keys.Phase 1 is read-only — no create/update/delete operations.
Rotate
MCP_API_KEYif it is exposed.
License
Internal Uniware project.
This server cannot be installed
Maintenance
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/Srimathi-8502/Mcp_Vtiger_claude'
If you have feedback or need assistance with the MCP directory API, please join our Discord server