# Your Kylas CRM MCP is published – what’s next
## 1. Verify it’s on the registry (optional)
```bash
curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=kylas-crm"
```
You should see `io.github.akshaykylas94/kylas-crm` in the JSON.
---
## 2. Install and use it (you or others)
**From Cursor / other MCP clients that use the registry**
- In Cursor: **Settings → MCP** (or **Features → MCP**). If your client supports “Add from registry” or “Browse marketplace”, search for **Kylas CRM** or **io.github.akshaykylas94/kylas-crm** and add it.
- The client will use the registry entry to install (e.g. `pip install kylas-crm-mcp`) and run the server.
**Manual install (anyone with a Kylas API key)**
```bash
pip install kylas-crm-mcp
```
Then configure their MCP client to run:
- **Command:** `kylas-crm-mcp`
or
- **Command:** `python` with **Args:** `-m`, `main` (if they run from repo)
**Required env (for all users):**
- `KYLAS_API_KEY` (required)
---
## 3. Point the registry at your GitHub repo (recommended)
Your `server.json` has:
`"url": "https://github.com/akshaykylas94/MCP"`
- If this repo is already on GitHub under `akshaykylas94/MCP`, you’re set.
- If not, create a repo (e.g. `akshaykylas94/MCP`), push this code, and the registry’s “Repository” link will work for users.
---
## 4. Share with others
You can share:
- **Registry name:** `io.github.akshaykylas94/kylas-crm`
- **PyPI package:** https://pypi.org/project/kylas-crm-mcp/
- **Repo (once pushed):** https://github.com/akshaykylas94/MCP
---
## 5. When you release a new version
1. Bump version in **`pyproject.toml`** and **`server.json`** (e.g. `1.0.1`).
2. Rebuild and upload to PyPI:
```bash
cd /Users/admin/Documents/MCP
python -m build
twine upload dist/*
```
3. Publish the new version to the MCP Registry:
```bash
mcp-publisher publish
```
---
## Quick checklist
- [ ] Verified server in registry (curl or UI)
- [ ] Tested install: `pip install kylas-crm-mcp` and run in your MCP client
- [ ] Pushed code to `https://github.com/akshaykylas94/MCP` (if you want the repo link to work)
- [ ] Shared registry name or PyPI link with your team or users
That’s it. Your MCP is published and ready to use.