inception-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@inception-mcpUpload all .txt files in gutenberg/processed/ to project 1."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
inception-mcp
A wrapper around INCEpTION's AERO v1 REST API, exposing corpus management operations as MCP tools and CLI commands.
Annotations are always performed by human annotators inside the INCEpTION interface. This package does not annotate: it handles corpus management tasks (upload, export, monitoring, import) that can be automated or delegated to an agent.
"Upload all .txt files in gutenberg/processed/ to project 1."
"Export annotations for document 42 by user admin in ctsv3 format to data/annot.tsv."Exposes INCEpTION's AERO v1 REST API as:
MCP tools — callable from any MCP-compatible agent (Claude Code, Claude Desktop, etc.)
CLI — standalone terminal interface, no AI agent required
Both share the same underlying InceptionClient.
Use cases
Scenario | How |
Corpus upload at scale | Batch-upload hundreds of documents to a project |
Pipeline management | Chain upload → monitor progress → export completed annotations |
Progress monitoring | List all documents and their annotation states per user |
Export and post-processing | Export ctsv3/XMI annotations and pipe them into a parsing script |
Multi-project management | Create, inspect and archive projects without leaving the terminal |
Features
Feature | MCP server | CLI |
List / create / delete projects | ✓ | ✓ |
Export / import project ZIP (schema + docs + annotations) | ✓ | ✓ |
Project progress status | ✓ | ✓ |
List / upload / delete documents | ✓ | ✓ |
Batch upload a folder of documents | ✓ | ✓ |
Export document source | ✓ | ✓ |
List annotations by user | ✓ | ✓ |
Export / import annotations (13 formats) | ✓ | ✓ |
Export all annotations for a project | ✓ | ✓ |
Delete annotations by user | ✓ | ✓ |
Export / delete curation layer | ✓ | ✓ |
Supported export formats: ctsv3, xmi, xmi-struct, conllu, conll2003, conll2006, conll2009, conll2012, text, tcf, jsoncas, jsoncas-struct, nif.
Related MCP server: Coda Universal MCP Server
Requirements
Python ≥ 3.10
A running INCEpTION instance (tested with INCEpTION 33+) with the REST API enabled (see below)
uv(recommended) orpip
Enabling the INCEpTION REST API
The AERO v1 REST API must be enabled before using this package. Refer to the official INCEpTION documentation for instructions.
Once enabled, the API is reachable at http://<host>:<port>/api/aero/v1. The Swagger UI is available at:
http://<host>:<port>/swagger-ui.htmlAuthentication uses HTTP Basic Auth with your INCEpTION credentials.
Installation
With uv (recommended)
git clone https://github.com/RaphFaure/inception-mcp
cd inception-mcp
uv syncWith pip
git clone https://github.com/RaphFaure/inception-mcp
cd inception-mcp
pip install -e .Configuration
Connection parameters are read from environment variables (or a .env file at the project root):
Variable | Default | Description |
|
| Base URL of the INCEpTION instance |
|
| Username |
| (empty) | Password |
Create a .env file:
cp .env.example .env
# then edit .env with your credentialsUsage — MCP server
Claude Desktop
Add the following block to your ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"inception": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/inception-mcp", "inception-mcp"],
"env": {
"INCEPTION_URL": "http://localhost:8080",
"INCEPTION_USER": "admin",
"INCEPTION_PASSWORD": "your_password"
}
}
}
}Restart Claude Desktop. The INCEpTION tools will appear automatically.
Claude Code (claude.ai/code)
Add the same block under mcpServers in your project's .claude/settings.json or in ~/.claude/settings.json.
Available MCP tools
Projects
Tool | Description |
| List all accessible projects |
| Create a new project |
| ⚠️ Delete a project and all its documents |
| Export full project as ZIP |
| Import a project from ZIP |
| Show annotation progress per document |
Documents
Tool | Description |
| List documents in a project |
| Upload a single file |
| Upload all files in a folder |
| Export document source |
| ⚠️ Delete a document |
Annotations
Tool | Description |
| List annotations per user |
| Export annotations |
| Export all docs in a project |
| Import annotations |
| ⚠️ Delete a user's annotations |
Curation
Tool | Description |
| Export curated annotations |
| ⚠️ Delete curated annotations |
Usage — CLI
# via uv
uv run inception-cli <command>
# or, if installed via pip
inception-cli <command>Global options
--url URL INCEpTION (overrides $INCEPTION_URL)
--user Username (overrides $INCEPTION_USER)
--password Password (overrides $INCEPTION_PASSWORD)Commands
# Projects
inception-cli list-projects
inception-cli create-project --name my_project
inception-cli status --project 1
inception-cli export-project --project 1 --out backup.zip
inception-cli import-project --zip backup.zip
inception-cli delete-project --project 1
# Documents
inception-cli list-documents --project 1
inception-cli upload --project 1 --file doc.txt --format text
inception-cli batch-upload --project 1 --folder ./texts --glob "*.txt"
inception-cli export-doc-source --project 1 --doc 42 --out source.txt
inception-cli delete-doc --project 1 --doc 42
# Annotations
inception-cli list-annotations --project 1 --doc 42
inception-cli export --project 1 --doc 42 --user admin --format ctsv3 --out annot.tsv
inception-cli export-all --project 1 --user admin --out-dir ./annotations
inception-cli import-annotations --project 1 --doc 42 --user admin --file annot.tsv
inception-cli delete-annotations --project 1 --doc 42 --user admin
# Curation
inception-cli export-curation --project 1 --doc 42 --format ctsv3 --out curation.tsv
inception-cli delete-curation --project 1 --doc 42Architecture
inception_mcp/
├── __init__.py # Public exports: InceptionClient, InceptionError
├── client.py # InceptionClient — HTTP layer over AERO v1 REST API
├── server.py # FastMCP server — wraps client as MCP tools
└── cli.py # argparse CLI — wraps client as shell commands
tests/
└── test_client.py # Unit tests (22 tests, no INCEpTION instance required)client.py is the single source of truth for all API calls. Adding a new operation means implementing it once in InceptionClient, then exposing it in server.py (as a @mcp.tool()) and in cli.py (as a new subcommand).
Run tests with:
pip install pytest
pytest tests/Security notes
Destructive operations are irreversible.
delete_project,delete_document,delete_annotationsanddelete_curationhave no undo mechanism in INCEpTION. Always verify IDs before calling them.
The server runs locally and is only reachable from the machine where it is started.
Credentials are read from environment variables — never hard-code them in files
committed to version control. The .gitignore in this repository excludes .env.
INCEpTION API reference
The full AERO v1 Swagger UI is available at:
http://<your-inception-host>:<port>/swagger-ui.htmlLicense
MIT — you are free to use, modify, and redistribute this software in any project, commercial or not, as long as the original copyright notice is kept.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RaphFaure/inception-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server