npm @samuraizer/mcp-serverstdioMITupdated 11d ago
Turn meeting recordings into transcripts, summaries, action items, and decisions — entirely on your machine. No cloud, no subscriptions, no data leaving your network.
What can you do with samuraizer?
Samuraizer
Turn meeting recordings into transcripts, summaries, action items, and decisions — entirely on your machine. No cloud, no subscriptions, no data leaving your network.
Reference implementation. Samuraizer is the reference implementation of the memnex specification — an open standard for portable meeting outputs (transcripts, summaries, action items, decisions). All outputs conform to memnex v0.2, including a full provenance chain.
Why Samuraizer
- Fully local. Your recordings never leave your machine.
- CLI-first. Scriptable, automatable, integrates with cron, Git hooks, Obsidian workflows.
- Resumable. Crashed mid-pipeline? Re-run picks up where it left off.
- Fast. LLM stages (summary, action items, decisions) run in parallel, cutting total time by ~2.3×.
- Model-agnostic. Works with any Ollama-compatible LLM — pick what fits your hardware.
- Free. No subscriptions, no per-minute pricing.
Portable output with memnex
Samuraizer writes meeting results in the portable memnex v0.2 format. This lets another meeting app, local AI agent, or MCP server consume the same transcript, summary, action items, decisions, and provenance without learning a Samuraizer-specific JSON shape.
To verify a memnex document in under a minute, follow the memnex quickstart. It installs the validator and checks a real v0.2 example end to end.
📦 Packages
This is a monorepo. Samuraizer is published as two npm packages, each with its own README and changelog:
| Package | What it does | Docs |
|---|---|---|
@samuraizer/cli |
The meeting-processing CLI — install, configure, and run the local pipeline. Start here. | packages/cli/README.md |
@samuraizer/mcp-server |
Companion Model Context Protocol server. Lets AI agents (Claude Desktop, Claude Code, MCP Inspector) query your processed meetings and trigger the pipeline. | packages/mcp-server/README.md |
🏛 Project status
- memnex specification: v0.2 — see the memnex repo for the schema, conformance suite, and governance documents.
- Schemastore registered. memnex is in the universal JSON Schema catalog (PR #5676).
*.memnex.jsonandmeeting-output.jsonfiles get IDE autocomplete and validation by default in VS Code, JetBrains IDEs, Neovim, Sublime, and other editors with language-server support. - Roadmap: local diarization, cryptographic signing UX, accessibility (WebVTT subtitles), and the path to memnex v1.0 are funded milestones.
🤝 Contributing
Samuraizer follows a BDFL bootstrap model — see the memnex GOVERNANCE.md for the broader project's governance model, which Samuraizer mirrors.
Bug reports and feature discussions are welcome in GitHub Issues.
📝 Changelogs
📄 License
MIT — see LICENSE.
Install
Add samuraizer to your client. Pick the one you use.
claude mcp add mcp-server -- npx -y @samuraizer/mcp-servercodex mcp add mcp-server -- npx -y @samuraizer/mcp-serveramp mcp add mcp-server -- npx -y @samuraizer/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-server","command":"npx","args":["-y","@samuraizer/mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@samuraizer/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @samuraizer/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation12/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.6Latest | Aug 20, 2026 |