ConnectWise Sell (Quosal) MCP server — 12 tools for quotes, line items, templates, and recurring revenue
Project description
ConnectWise Sell MCP Server
FastMCP HTTP server wrapping the ConnectWise Sell (Quosal) REST API. 12 tools covering Quotes, Line Items, Tabs, Customers, Terms, Templates, Recurring Revenue, and Tax Codes.
Note: Quotes cannot be created from scratch via the Sell API — new quotes must be copied from an existing quote or template. Use
get_templatesto browse templates, thencopy_quoteto create.
Installation
Via uvx (recommended — no clone, no venv):
uvx connectwise-sell-mcp
Set credentials via environment variables or a .env file in your working directory.
Via pip:
pip install connectwise-sell-mcp
connectwise-sell-mcp
From source:
git clone https://github.com/Mfrostbutter/connectwise-sell-mcp
cd connectwise-sell-mcp
cp .env.example .env
# fill in your SELL_* credentials
python3 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
python3 server.py
# verify: curl http://localhost:8086/health
Transport modes
| Mode | How to set | Best for |
|---|---|---|
http (default) |
MCP_TRANSPORT=http |
Persistent server shared across sessions or team members |
stdio |
MCP_TRANSPORT=stdio |
Cursor, VS Code, Zed, Continue, or any stdio-based MCP client |
In stdio mode the server is spawned per-session by the client — no port, no persistent process.
Environment variables
| Variable | Required | Default | Notes |
|---|---|---|---|
SELL_ACCESS_KEY |
Yes | — | Found in the Sell URL parameters when logged in |
SELL_USERNAME |
Yes | — | Sell API username (must be an API user) |
SELL_PASSWORD |
Yes | — | Sell API password |
SELL_BASE_URL |
No | https://sellapi.quosalsell.com |
Override if your instance uses a different host |
MCP_AUTH_TOKEN |
No | — | Bearer token for MCP client auth; omit to run without auth |
SELL_MCP_PORT |
No | 8086 |
HTTP listen port |
How to find your access key
Log into ConnectWise Sell and look at the URL — it will contain a parameter like accessKey=XXXXXXXX. That value is your SELL_ACCESS_KEY.
Authentication
The Sell API uses HTTP Basic auth with a compound credential:
Authorization: basic base64(accessKey+username:password)
The server constructs this automatically from your env vars.
Tools (12)
Quotes (5): list_quotes, get_quote, get_quote_versions, copy_quote, update_quote
Quote detail (4): get_quote_items, get_quote_tabs, get_quote_customers, get_quote_terms
Reference (3): get_templates, get_recurring_revenues, get_tax_codes
Client configuration
HTTP mode — Claude Desktop, Claude Code (server runs persistently):
claude_desktop_config.json / .claude/settings.json:
{
"mcpServers": {
"connectwise-sell": {
"type": "http",
"url": "http://localhost:8086/mcp",
"headers": { "Authorization": "Bearer your_token_here" }
}
}
}
stdio mode — Cursor, VS Code, Zed, Continue, or any stdio client (server spawned per-session):
{
"mcpServers": {
"connectwise-sell": {
"command": "uvx",
"args": ["connectwise-sell-mcp"],
"env": {
"SELL_ACCESS_KEY": "your_access_key",
"SELL_USERNAME": "your_api_username",
"SELL_PASSWORD": "your_password",
"MCP_TRANSPORT": "stdio"
}
}
}
}
Running as a service
[Unit]
Description=ConnectWise Sell MCP
After=network.target
[Service]
User=mcp
WorkingDirectory=/opt/connectwise-sell-mcp
EnvironmentFile=/opt/connectwise-sell-mcp/.env
ExecStart=/opt/connectwise-sell-mcp/venv/bin/python3 server.py
Restart=always
[Install]
WantedBy=multi-user.target
Related
- connectwise-mcp — ConnectWise Manage MCP server (tickets, agreements, companies, time, finance)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file connectwise_sell_mcp-0.1.0.tar.gz.
File metadata
- Download URL: connectwise_sell_mcp-0.1.0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.13.11 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c44f18b8ae54037848f2cb1bb8cfbce49f51cf7dcf617f5679a0fe403032e143
|
|
| MD5 |
db07098bdc1633ea75e682c56e3f00be
|
|
| BLAKE2b-256 |
b0311f565e7627c152e12c0d60bd6def28fe3e90d76af5c8e6ca55dbd91ccfb3
|
File details
Details for the file connectwise_sell_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: connectwise_sell_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.13.11 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12c5c6fb1c8d548cc5853348331e12a53d4a5557553da259f0a4b842dbfee12e
|
|
| MD5 |
e7319df8af5077550d326652fd193b85
|
|
| BLAKE2b-256 |
12de6570170c073b318d24b75582ab2a41bb3d4ee3fb88e7ab61776632148c71
|