Qonto MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"Qonto MCP Docker": {
"args": [
"run",
"--rm",
"-i",
"-e",
"QONTO_API_KEY=abcdefghihlmnopqrstuvxz123456",
"-e",
"QONTO_ORGANIZATION_ID=qonto-organization-slug-1234",
"-e",
"QONTO_THIRDPARTY_HOST=https://thirdparty.qonto.com",
"qonto/qonto-mcp-server:latest"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Qonto MCP Server
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Qonto Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
https://github.com/user-attachments/assets/619cd6a1-e064-4518-a84c-8134c09fae03
[!IMPORTANT] Security and customer trust are fundamental to everything we do at Qonto. While this repository enables powerful innovation and integration capabilities, it's important to understand that certain risks are inherent to the use of the MCP technology itself. Please review the following security information carefully.
The MCP (Model Context Provider) protocol gives AI models access to additional functionality like reading files, accessing APIs, and generate responses based on contextual data.
While this brings powerful integration capabilities, it also introduces important security considerations.
A malicious MCP server can secretly steal credentials and maliciously exploit other trusted MCP servers you're using (read more).
These risks are not specific to Qonto’s MCP server, but apply to any use of the MCP protocol.
We recommend to only use MCP servers you trust, just as you would with any software you install on your computer.
Questions or security concerns? Contact us at security@qonto.com.
/settings/integrations section:docker pull qonto/qonto-mcp-server:latest
claude_desktop_config.json file, add the Qonto MCP server as follows:{
"mcpServers": {
"Qonto MCP Docker": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "QONTO_API_KEY=<QONTO_API_KEY>", // <- change this with the API key from the settings page
"-e", "QONTO_ORGANIZATION_ID=<QONTO_ORGANIZATION_ID>", // <- change this with the organization id from the settings page
"-e", "QONTO_THIRDPARTY_HOST=https://thirdparty.qonto.com",
"qonto/qonto-mcp-server:latest"
]
}
}
}
For example, this is a full Docker configuration:
{
"mcpServers": {
"Qonto MCP Docker": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "QONTO_API_KEY=abcdefghihlmnopqrstuvxz123456",
"-e", "QONTO_ORGANIZATION_ID=qonto-organization-slug-1234",
"-e", "QONTO_THIRDPARTY_HOST=https://thirdparty.qonto.com",
"qonto/qonto-mcp-server:latest"
]
}
}
}
uv. If you're on Mac, you can just do brew install uvclaude_desktop_config.json file, add the Qonto MCP server as follows:Note: You can optionally pass
--transport streamable-httpto use HTTP transport instead of the defaultstdiotransport protocol.
{
"mcpServers": {
"Qonto MCP": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"requests",
"mcp",
"run",
"<PATH_TO_CLONED_REPO_FOLDER, ie. ~/development/qonto-mcp/qonto_mcp/server.py>", // <- change this
"-
... [View full README on GitHub](https://github.com/qonto/qonto-mcp-server#readme)