Skip to main content
ClaudeWave

Connect any MCP client to your Odoo ERP through Aidoo

MCP ServersOfficial Registry1 stars0 forksPythonMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/23/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · aidoo-mcp
Claude Code CLI
claude mcp add aidoo-mcp -- uvx aidoo-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "aidoo-mcp": {
      "command": "uvx",
      "args": ["aidoo-mcp"],
      "env": {
        "AIDOO_API_KEY": "<aidoo_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
AIDOO_API_KEY
Use cases

MCP Servers overview

# aidoo-mcp

Connect any MCP client to your Odoo ERP through [Aidoo](https://aidoo.ai).

`aidoo-mcp` is a small stdio bridge. It takes an Aidoo API key, opens an authenticated
session against the hosted Aidoo MCP server, and relays the Model Context Protocol
messages in both directions. Your assistant then queries, creates and updates Odoo
records in plain language, under the permissions carried by the key.

[![PyPI](https://img.shields.io/pypi/v/aidoo-mcp.svg)](https://pypi.org/project/aidoo-mcp/)
[![Python](https://img.shields.io/pypi/pyversions/aidoo-mcp.svg)](https://pypi.org/project/aidoo-mcp/)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)

## Why a bridge

The Aidoo MCP server is hosted at `https://mcp.aidoo.ai`, and clients that support
remote connectors with OAuth or custom headers can reach it directly, with nothing to
install. Many MCP clients still speak stdio only, or offer no way to set an
`Authorization` header. This bridge fills that gap: one command, no local server,
no Odoo credentials on your machine.

```
MCP client  <--stdio-->  aidoo-mcp  <--HTTPS-->  Aidoo  <--XML-RPC-->  Odoo
```

The bridge is transparent. It never rewrites payloads, so every tool your workspace
exposes is available the moment Aidoo ships it, with no update needed here.

## Requirements

- Python 3.10 or newer
- An [Aidoo account](https://app.aidoo.ai/register) with an Odoo connection
- An Aidoo API key, prefixed `aid_live_`, created from the API keys page of your workspace

## Install

Run it without installing anything, with [uv](https://docs.astral.sh/uv/):

```bash
uvx aidoo-mcp --check
```

Or install it:

```bash
pipx install aidoo-mcp
# or
pip install aidoo-mcp
```

## Check your setup

```bash
export AIDOO_API_KEY=aid_live_your_key_here
aidoo-mcp --check
```

The command verifies that the endpoint answers, performs the MCP handshake and prints
the tools your key grants:

```
[aidoo-mcp] https://mcp.aidoo.ai/health is reachable
[aidoo-mcp] authenticated with https://mcp.aidoo.ai/mcp (transport=http, key=aid_live_...cdef)
[aidoo-mcp] 8 tools available: aidoo_context, aidoo_create, aidoo_print, aidoo_query, ...
```

## Configure your client

### Claude Desktop

`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS,
`%APPDATA%\Claude\claude_desktop_config.json` on Windows:

```json
{
  "mcpServers": {
    "aidoo": {
      "command": "uvx",
      "args": ["aidoo-mcp"],
      "env": { "AIDOO_API_KEY": "aid_live_your_key_here" }
    }
  }
}
```

### Cursor

`~/.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "aidoo": {
      "command": "uvx",
      "args": ["aidoo-mcp"],
      "env": { "AIDOO_API_KEY": "aid_live_your_key_here" }
    }
  }
}
```

### Windsurf

`~/.codeium/windsurf/mcp_config.json`, same block as Cursor.

### VS Code

`.vscode/mcp.json` in your workspace:

```json
{
  "servers": {
    "aidoo": {
      "type": "stdio",
      "command": "uvx",
      "args": ["aidoo-mcp"],
      "env": { "AIDOO_API_KEY": "aid_live_your_key_here" }
    }
  }
}
```

### Any other stdio client

Point it at the `aidoo-mcp` executable and pass the key through the environment. If the
client cannot set environment variables, use the flag instead:

```bash
aidoo-mcp --api-key aid_live_your_key_here
```

Cursor, Windsurf and any client that does accept custom headers can also skip the
bridge entirely and target `https://mcp.aidoo.ai/sse` with an `Authorization` header.
See the [Aidoo documentation](https://aidoo.ai/docs).

## Usage

```
aidoo-mcp [--api-key KEY] [--url URL] [--transport {http,sse}]
          [--timeout SECONDS] [--retries N] [--check] [--quiet]
```

| Option | Environment variable | Default |
| --- | --- | --- |
| `--api-key` | `AIDOO_API_KEY` | required |
| `--url` | `AIDOO_MCP_URL` | `https://mcp.aidoo.ai/mcp` |
| `--transport` | `AIDOO_MCP_TRANSPORT` | inferred from the URL path |
| `--timeout` | `AIDOO_MCP_TIMEOUT` | `60` |
| `--retries` | | `3` |

Logs go to stderr, so they never interfere with the protocol stream on stdout. Exit
code `2` means a configuration problem, `1` a connection that could not be established.

## Ask your assistant

```
List the five quotations I sent last week that are still pending.
Create a contact for Martin Dupont at Dupont SA, martin@dupont.fr.
Generate the PDF of invoice INV/2026/0042.
```

## Security

- The key is read from the environment or the command line and sent as a bearer token
  over HTTPS. It is masked in every log line.
- Odoo credentials stay in Aidoo. The bridge never sees them, and never talks to Odoo.
- Each key carries its own permissions, and every call runs under the Odoo access
  rules of the linked user. Grant only what the assistant needs.
- Use one key per person, never a shared key, and revoke it from the dashboard if in doubt.
- Report a vulnerability privately: see [SECURITY.md](SECURITY.md).

## Troubleshooting

**`No API key found`** The `AIDOO_API_KEY` variable did not reach the process. Client
configuration files often ignore your shell profile, so set the key in the `env` block
shown above.

**Handshake fails with 401** The key was revoked, or its MCP permissions are disabled.
Check it on the API keys page of your workspace.

**The tool list is shorter than expected** Tools follow the permissions of the key.
Grant the missing ones, then restart your client.

**Nothing happens in the client** Restart the client completely after editing its
configuration, then look at its MCP logs. `aidoo-mcp --check` tells you within seconds
whether the problem is on your side or ours.

**A corporate network blocks the connection** The bridge needs outbound HTTPS on port
443 to `mcp.aidoo.ai`. Try `--transport sse` if an intermediate proxy mishandles
streamable HTTP.

## Development

```bash
uv sync
uv run pytest
uv run ruff check .
uv run ruff format --check .
```

## License

MIT. See [LICENSE](LICENSE).
aiaidooclaudeerpmcpmodel-context-protocolodoopython

What people ask about aidoo-mcp

What is eantoniomota/aidoo-mcp?

+

eantoniomota/aidoo-mcp is mcp servers for the Claude AI ecosystem. Connect any MCP client to your Odoo ERP through Aidoo It has 1 GitHub stars and its last recorded update is dated 2026-09-22.

How do I install aidoo-mcp?

+

You can install aidoo-mcp by cloning the repository (https://github.com/eantoniomota/aidoo-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is eantoniomota/aidoo-mcp safe to use?

+

Our security agent has analyzed eantoniomota/aidoo-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains eantoniomota/aidoo-mcp?

+

eantoniomota/aidoo-mcp is maintained by eantoniomota. The last recorded GitHub activity is dated 2026-09-22, with 0 open issues.

Are there alternatives to aidoo-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy aidoo-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: eantoniomota/aidoo-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/eantoniomota-aidoo-mcp)](https://claudewave.com/repo/eantoniomota-aidoo-mcp)
<a href="https://claudewave.com/repo/eantoniomota-aidoo-mcp"><img src="https://claudewave.com/api/badge/eantoniomota-aidoo-mcp" alt="Featured on ClaudeWave: eantoniomota/aidoo-mcp" width="320" height="64" /></a>

More MCP Servers

aidoo-mcp alternatives