Install
$ agentstack add mcp-lukasl-dev-rime ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
rime
A minimal Model Context Protocol (MCP) server for Nix tooling, written in Rust.
Tools
❄️ Nix
nix_evaluate: Evaluate a Nix expression.nix_log: Get build log for an installable.nix_packages_search: Search packages in an installable.nix_packages_why_depends: Show why a package depends on another.nix_flakes_show: Show a flake's outputs.nix_flakes_metadata: Show flake metadata.nix_config_check: Runnix config check.nix_config_show: Runnix config show.nix_manual_list: List Markdown files in the Nix manual.nix_manual_read: Read a Markdown file from the Nix manual.nixpkgs_options_search: Search for Nixpkgs options in nixpkgs for a specific ref.
❄️ NixOS
nixos_wiki_search: Search the NixOS wiki.nixos_wiki_read: Read a page from the NixOS wiki.nixos_channels: List available NixOS channels with their status.
🏠 Home Manager
home_manager_options_search: Search Home Manager options.
🌑 nvf
nvf_options_search: Search nvf options for a specific ref.nvf_manual_list: List files in the nvf manual for a specific ref.nvf_manual_read: Read a file from the nvf manual for a specific ref.
📦 Nixhub
nixhub_package_versions: Get version history for a package via nixhub.
🔍 General Tools
manix_search: Search docs with manix.
Getting Started
Prerequisites
Ensure nix is installed and available on your PATH.
Build & Run
# Build
nix build .#rime
# Run (Stdio)
./result/bin/rime stdio
# Run (HTTP)
./result/bin/rime http --host 127.0.0.1 --port 8080
Usage
OpenAI Codex
Add to ~/.codex/config.toml:
[mcp_servers.rime]
command = "/path/to/rime"
args = ["stdio"]
opencode
Add to ~/.config/opencode/config.json:
{
"mcp": {
"rime": {
"type": "local",
"command": ["/path/to/rime", "stdio"],
"enabled": true
}
}
}
Claude Code
claude mcp add rime -- /path/to/rime stdio
Gemini Code
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"rime": {
"command": "/path/to/rime",
"args": ["stdio"]
}
}
}
VSCode
Add to .vscode/mcp.json:
{
"servers": {
"rime": {
"command": "/path/to/rime",
"args": ["stdio"]
}
}
}
Zed
Add to settings.json:
{
"context_servers": {
"rime": {
"command": "/path/to/rime",
"args": ["stdio"]
}
}
}
Credits
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: lukasl-dev
- Source: lukasl-dev/rime
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.