Onboarding Server
FreeNot checkedA local-first MCP server that enables AI coding assistants to map codebases, transcribe onboarding videos with keyframe screenshots, and maintain structured Obs
About
A local-first MCP server that enables AI coding assistants to map codebases, transcribe onboarding videos with keyframe screenshots, and maintain structured Obsidian knowledge vaults directly from IDE chat.
README
A local-first Model Context Protocol (MCP) server that empowers AI coding assistants (e.g., Cursor, Claude Code, Antigravity IDE) to autonomously map codebases, transcribe onboarding videos with keyframe screenshots, and maintain structured knowledge vaults in Obsidian directly from IDE chat interactions.
🌟 Key Capabilities
set_vault_path: Dynamically configure the active Obsidian vault directory for session state from IDE chat.set_workspace_path: Dynamically configure the target codebase workspace directory for session state from IDE chat.get_codebase_structure: Recursively map code directory structures and detect dependency manifests, respecting.gitignore(uses configured session workspace path or optionalworkspace_pathparameter).process_video: Transcribe onboarding videos usingfaster-whisper(CPU int8), extract scene keyframes via OpenCV, and output timestamp-aligned transcript data.write_obsidian_note: Write structured Markdown notes and MOCs (Maps of Concepts) directly into the user's local Obsidian vault (uses configured session vault path or optionalvault_pathparameter).
🚀 Quickstart
Option 1: Docker (Recommended - Zero Host Setup)
Build and run the containerized server with pre-packaged ffmpeg and dependencies. Note: because Docker containers run in an isolated environment, volume mounts (-v) are required to grant the container access to host directories specified in chat:
# Build the Docker image
make build-docker
# Run container (mount host directories so chat can access them)
docker run -i --rm -v $HOME:$HOME onboarding-mcp-server
Option 2: Local Python Environment (No Volume Mounts Needed)
Runs directly on your host OS. Any absolute path passed from IDE chat works natively without volume mounts.
Requires Python 3.11+ and ffmpeg installed on host (brew install ffmpeg on macOS).
# Install dependencies into virtualenv
make setup
# Run the tests
make test
# Run the MCP server over stdio
.venv/bin/python -m onboarder.server
⚙️ IDE Chat Integration & Setup
The IDE chat assistant can configure workspace and vault paths dynamically at any point during a chat session:
set_workspace_path(path="/path/to/repo")set_vault_path(path="/path/to/ObsidianVault")
Alternatively, individual tools (get_codebase_structure, write_obsidian_note, process_video) accept optional workspace_path and vault_path arguments directly.
Docker Configuration Example (claude_desktop_config.json / Cursor / Antigravity)
Mount your user home directory (or relevant code/vault folders) so paths passed in chat are accessible:
{
"mcpServers": {
"onboarding-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/Users/yourname:/Users/yourname",
"onboarding-mcp-server"
]
}
}
}
Local Python Configuration Example
{
"mcpServers": {
"onboarding-mcp": {
"command": "/absolute/path/to/onboarding-mcp/.venv/bin/python",
"args": ["-m", "onboarder.server"]
}
}
}
🛠 Developer Workflow
make setup # Set up venv and install dev dependencies
make test # Run pytest suite
make lint # Run ruff check and mypy type checking
make format # Run ruff formatter
📄 License
MIT
Installing Onboarding Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/fabimelo/onboarding-mcpFAQ
Is Onboarding Server MCP free?
Yes, Onboarding Server MCP is free — one-click install via Unyly at no cost.
Does Onboarding Server need an API key?
No, Onboarding Server runs without API keys or environment variables.
Is Onboarding Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Onboarding Server in Claude Desktop, Claude Code or Cursor?
Open Onboarding Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Compare Onboarding Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
