MCP Server
Active
AGPL-3.0
io.github.alexey-pelykh/qontoctl MCP Server
io.github.alexey-pelykh/qontoctl
What is the io.github.alexey-pelykh/qontoctl MCP server?
CLI and MCP server for the Qonto banking API
How to install io.github.alexey-pelykh/qontoctl
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
QONTOCTL_ORGANIZATION_SLUGrequiredQonto organization slug
QONTOCTL_SECRET_KEYrequiredsecretQonto API secret key
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"qontoctl": {
"command": "npx",
"args": [
"-y",
"qontoctl"
],
"env": {
"QONTOCTL_ORGANIZATION_SLUG": "<YOUR_QONTOCTL_ORGANIZATION_SLUG>",
"QONTOCTL_SECRET_KEY": "<YOUR_QONTOCTL_SECRET_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"qontoctl": {
"command": "npx",
"args": [
"-y",
"qontoctl"
],
"env": {
"QONTOCTL_ORGANIZATION_SLUG": "<YOUR_QONTOCTL_ORGANIZATION_SLUG>",
"QONTOCTL_SECRET_KEY": "<YOUR_QONTOCTL_SECRET_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"qontoctl": {
"command": "npx",
"args": [
"-y",
"qontoctl"
],
"env": {
"QONTOCTL_ORGANIZATION_SLUG": "<YOUR_QONTOCTL_ORGANIZATION_SLUG>",
"QONTOCTL_SECRET_KEY": "<YOUR_QONTOCTL_SECRET_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"qontoctl": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"qontoctl"
],
"env": {
"QONTOCTL_ORGANIZATION_SLUG": "<YOUR_QONTOCTL_ORGANIZATION_SLUG>",
"QONTOCTL_SECRET_KEY": "<YOUR_QONTOCTL_SECRET_KEY>"
}
}
}
}Claude Code
claude mcp add qontoctl --env QONTOCTL_ORGANIZATION_SLUG=<YOUR_QONTOCTL_ORGANIZATION_SLUG> --env QONTOCTL_SECRET_KEY=<YOUR_QONTOCTL_SECRET_KEY> -- npx -y qontoctlRelated MCP servers
Unofficial CLI and MCP server for the Toptal Talent platform — personal-productivity tool
0
View repository →TypeScript
AGPL-3.0