Back to Browse

Kylas Crm MCP Server

Business ToolsUse Caution4.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for Kylas CRM: create, search, and manage leads. Requires KYLAS_API_KEY.

About

MCP server for Kylas CRM: create, search, and manage leads. Requires KYLAS_API_KEY.

Security Report

4.0
Use Caution4.0High Risk

Valid MCP server (0 strong, 3 medium validity signals). 6 known CVEs in dependencies (1 critical, 3 high severity) Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

4 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

Your Kylas API key (required)Required

Environment variable: KYLAS_API_KEY

Kylas API base URL (optional, default: https://api.kylas.io/v1)Optional

Environment variable: KYLAS_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-akshaykylas94-kylas-crm": {
      "env": {
        "KYLAS_API_KEY": "your-kylas-api-key-here",
        "KYLAS_BASE_URL": "your-kylas-base-url-here"
      },
      "args": [
        "kylas-crm-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Kylas CRM MCP Server (Lead Only)

Model Context Protocol server for Kylas CRM lead operations. Use it from Cursor, Claude Desktop, or any MCP client to create leads, search and filter leads, and look up users, products, and pipelines.

Features

  • get_lead_field_instructions – Get lead schema (standard + custom fields, picklist IDs)
  • create_lead – Create a lead with dynamic fields from user context
  • search_leads – Search/filter leads by multiple criteria
  • lookup_users – Resolve user names to IDs (for owner, created by, etc.)
  • lookup_products – Resolve product names to IDs
  • lookup_pipelines / get_pipeline_stages – Resolve pipeline and stage for open/closed/won leads
  • search_idle_leads – Find leads with no activity for N days

Requirements

  • Python 3.10+
  • Kylas account and API key

Installation

pip install -e .
# or from PyPI (after publish): pip install kylas-crm-mcp

Configuration

Set environment variables (or use a .env file):

VariableRequiredDescription
KYLAS_API_KEYYesYour Kylas API key
KYLAS_BASE_URLNoAPI base URL (default: https://api.kylas.io/v1)

Running the server

The server uses stdio transport (default for MCP). Run:

python -m kylas_crm_mcp
# or: python main.py  (when developing from repo root)

MCP clients (e.g. Cursor) typically start this process and communicate via stdin/stdout.

Docker

docker build -t kylas-crm-mcp .
docker run -e KYLAS_API_KEY=your_key -i kylas-crm-mcp

Development

pip install -e ".[dev]"
pytest

License

See repository for license information.

Reviews

No reviews yet

Be the first to review this server!