Quickchat AI MCP Server
Project description
Quickchat AI MCP server
The Quickchat AI MCP (Model Context Protocol) server allows you to let anyone plug in your Quickchat AI Agent into their favourite AI app such as Claude Desktop, Cursor, VS Code or Windsurf.
Quickstart
- Create a Quickchat AI account and start a 7-day trial of any plan.
- Set up your AI's Knowledge Base, capabilities and settings.
- Go to the MCP page to activate your MCP, give it Name, Description and (optional) Command. They are important, AI apps need to understand when to contact your AI, what its capabilities and knowledge are.
- That's it! Now you're ready to test your Quickchat AI via any AI app and show it to the world!
Claude tool anatomy
Test with Claude Desktop
Prerequisite
Install uv using curl -LsSf https://astral.sh/uv/install.sh | sh or read more here.
Configuration
Go to Settings > Developer > Edit Config. Open to edit the claude_desktop_config.json file in a text editor. If you're just starting out, the file is going to look like this:
{
"mcpServers": {}
}
This is where you can define all the MCPs your Claude Desktop has access to. Here is how you add your Quickchat AI MCP:
{
"mcpServers": {
"< QUICKCHAT AI MCP NAME >": {
"command": "uvx",
"args": ["quickchat-ai-mcp"],
"env": {
"SCENARIO_ID": "< QUICKCHAT AI SCENARIO ID >",
"API_KEY": "< QUICKCHAT AI API KEY >"
}
}
}
}
Go to the Quickchat AI app > MCP > Integration to find the above snippet with the values of MCP Name, Scenario Id and API Key filled out.
Test with Cursor
Prerequisite
Install the Quickchat AI MCP Python package: pip install quickchat-ai-mcp
Configuration
Go to Settings > Cursor Settings > MCP > Add new global MCP server and include the following:
{
"mcpServers": {
"< QUICKCHAT AI MCP NAME >": {
"command": "<YOUR PYTHON PATH>",
"args": [
"-m",
"quickchat-ai-mcp"
],
"env": {
"SCENARIO_ID": "< QUICKCHAT AI SCENARIO ID >",
"API_KEY": "< QUICKCHAT AI API KEY >"
}
}
}
}
As before, you can find values for MCP Name, Scenario Id and API Key at Quickchat AI app > MCP > Integration.
How to find YOUR PYTHON PATH?
Open the Python console (type python into your command line) and run:
import sys
print(sys.executable)
Test with other AI apps
Other AI apps will most likely require the same configuration as the one show above ☝️but the actual steps to include it in the App itself will be different. We will be expanding this README as we go along.
Launch your Quickchat AI MCP to the world!
⛔️ Do not publish your Quickchat API key to your users!
Once you're ready to let other users connect your Quickchat AI MCP to their AI apps, share the configuration steps. However, you need to make sure they can use your Quickchat AI MCP without your Quickchat API key. Here is how to do that:
- On the Quickchat App MCP page, turn the Require API key toggle OFF.
- Share the configuration snippet without the API key. Below is the Claude Desktop example:
{
"mcpServers": {
"< QUICKCHAT AI MCP NAME >": {
"command": "uvx",
"args": ["quickchat-ai-mcp"],
"env": {
"SCENARIO_ID": "< QUICKCHAT AI SCENARIO ID >"
}
}
}
}
Cool features
- You can control all aspects of your MCP from the Quickchat dashboard. One click and your change is deployed. That includes the MCP name and description - all your users need to do is refresh their MCP connection.
- View all conversations in the Quickchat Inbox. Remember: those won't be the exact messages your users send to their AI app but rather the transcript of the AI <> AI interaction between their AI app and your Quickchat AI. 🤯
- Unlike most MCP implementation, this isn't a static tool handed to an AI. It's an open-ended way to send messages to Quickchat AI Agents you create.
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 quickchat_ai_mcp-0.0.3.tar.gz.
File metadata
- Download URL: quickchat_ai_mcp-0.0.3.tar.gz
- Upload date:
- Size: 6.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fa2032e6fad10751d2b5408ac3f4a639425a9db8820875d7889c5781480311c
|
|
| MD5 |
5195ed8ff6b290158571ad64587e7969
|
|
| BLAKE2b-256 |
5ab3e2636928391feba3b45190f283dd6f4fa7afeef0ff7380b5898b3a90c3b3
|
File details
Details for the file quickchat_ai_mcp-0.0.3-py3-none-any.whl.
File metadata
- Download URL: quickchat_ai_mcp-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de903c305b9a566bcf75010ae75e8b15e51cb33acdfbf5d4cf2f404b26197ff2
|
|
| MD5 |
24cac3c328949c03daa520bad6d6d506
|
|
| BLAKE2b-256 |
a3f3cd6a387e8bb124a185fa89558bf343c68acc439fd6b16fadf9c83a45cbb2
|