Overview
qq-mcp-server is a simple Python project designed to provide MCP (Message Control Protocol) services for QQ bots.
To use qq-mcp-server, create and activate a virtual environment, install the required dependencies, and run the main program directly or through the installed command.
- Simple setup with a virtual environment - Easy installation of dependencies - Direct execution of the main program - Testing capabilities with pytest
- Developing custom QQ bots that require MCP services.
- Integrating with other Python applications to enhance functionality.
- Testing and debugging QQ bot features in a controlled environment.
Add to your AI client
Use these steps to connect qq-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"qq-mcp-server-kirikoko1213": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qq-mcp-server-kirikoko1213"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"qq-mcp-server-kirikoko1213": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qq-mcp-server-kirikoko1213"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"qq-mcp-server-kirikoko1213": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qq-mcp-server-kirikoko1213"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"qq-mcp-server-kirikoko1213": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qq-mcp-server-kirikoko1213"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"qq-mcp-server-kirikoko1213": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qq-mcp-server-kirikoko1213"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"qq-mcp-server-kirikoko1213": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qq-mcp-server-kirikoko1213"
]
}
}
}FAQ
What is the purpose of qq-mcp-server?
It provides MCP services specifically for QQ bots, allowing developers to create and manage bot functionalities.
Is qq-mcp-server free to use?
Yes! qq-mcp-server is open-source and free to use under the MIT license.
How do I run tests for qq-mcp-server?
You can run tests using the command `pytest` after setting up the project.