
Qonto
โ 3from j-about
Interact with the Qonto Business API to manage finances, transactions, and account information using API credentials.
๐ฅ๐ฅ๐ฅโ VerifiedAccount requiredNeeds API keys
Qonto-MCP-Server
MCP Server for the Qonto API.
Supported API Methods
This MCP server supports all endpoints of Qonto's Business API that are accessible via API key authentication. For a comprehensive list of these endpoints, please refer to the official Qonto documentation:
Copy & paste โ that's it
pip install qonto-mcp-serverBefore it works, you'll need: API_SECRET_KEY
Installation
Using uv (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run qonto-mcp-server.
Using PIP
Alternatively you can install qonto-mcp-server via pip:
Copy & paste โ that's it
pip install qonto-mcp-serverConfiguration
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
- Note: For details on how to obtain
API_LOGINandAPI_SECRET_KEYvalues, see the Qonto API key docs.
Using uvx
Copy & paste โ that's it
"mcpServers": {
"qonto-mcp-server": {
"command": "uvx",
"args": ["qonto-mcp-server", "--api-key", "API_LOGIN:API_SECRET_KEY"]
}
}Using pip installation
Copy & paste โ that's it
"mcpServers": {
"qonto-mcp-server": {
"command": "python",
"args": ["-m", "qonto-mcp-server", "--api-key", "API_LOGIN:API_SECRET_KEY"]
}
}No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.