Back to the catalog

Aurentia

Your Aurentia workspace — projects, CRM, tasks, deliverables — in Claude, Cursor or any MCP client.

Open source Repository Open in the app JSON README (API)

About

Your Aurentia workspace — projects, CRM, tasks, deliverables — in Claude, Cursor or any MCP client.

Details

Kind
MCP servers
Topic
Productivity
Publisher
fr.aurentia
Origin
official
Category
ferramentas
Transport
http
Version
1.1.1
Added
2026-08-29 03:01:35
Updated
2026-09-13 03:10:10
Origin id
fr.aurentia/mcp-server

README

# @aurentiaai/mcp-server

MCP (Model Context Protocol) server for [Aurentia](https://aurentia.fr) — the French AI platform for entrepreneurs, agencies, freelancers and teams (business modules, CRM, pipeline, tasks, deliverables, social media, AI agents…). This server exposes your Aurentia workspace as MCP tools for Claude, Cursor, and any MCP-compatible client, so your AI assistant can read your data and act on your behalf.

## Recommended: the remote server (OAuth, nothing to install)

The fastest way to connect is the hosted remote server — OAuth 2.1 + PKCE, no API key to copy:

```
https://app.aurentia.fr/api/mcp/aurentia
```

Paste that URL in any MCP client that supports remote servers (Claude, Cursor…). Your client will open an Aurentia authorization page, you approve, done. Tokens are short-lived and refreshed automatically.

Claude Code:

```bash
claude mcp add --transport http aurentia https://app.aurentia.fr/api/mcp/aurentia
```

## This package: local stdio server (manual API key)

Use the stdio variant if your client only supports local servers, or if you prefer a static token:

```bash
npx @aurentiaai/mcp-server
```

1. Generate a personal API key in **Mon Compte → Intégrations** (it starts with `aur_`).
2. Configure your client, e.g. Claude Desktop:

```json
{
  "mcpServers": {
    "aurentia": {
      "command": "npx",
      "args": ["-y", "@aurentiaai/mcp-server"],
      "env": {
        "AURENTIA_API_KEY": "aur_xxx"
      }
    }
  }
}
```

Environment variables:

| Variable | Required | Default | Purpose |
|---|---|---|---|
| `AURENTIA_API_KEY` | yes | — | Personal API key (`aur_*`) |
| `AURENTIA_URL` | no | `https://entrepreneurs.aurentia.fr` | API base URL override |

## Requirements

- Node.js ≥ 18
- An Aurentia account with a Pro or Scale plan (the MCP surface is a paid-tier feature)

## Links

- Product: https://aurentia.fr
- Endpoint discovery: https://app.aurentia.fr/.well-known/oauth-authorization-server
- llms.txt: https://app.aurentia.fr/llms.txt

More