Files
mcp-servers/README.md
Luis Eduardo Bueso de Barrio 87c34f34a7
All checks were successful
CI / Flake Check (push) Successful in 56s
CI / Build Individual Packages (academic-search-mcp-server) (push) Successful in 1m7s
CI / Build Individual Packages (duckduckgo-mcp-server) (push) Successful in 49s
CI / Build Individual Packages (kindly-web-search-mcp-server) (push) Successful in 1m31s
CI / Build Individual Packages (manim-mcp-server) (push) Successful in 1m2s
CI / Build Individual Packages (pdf-reader-mcp) (push) Successful in 1m3s
CI / Build Individual Packages (zotero-mcp) (push) Successful in 1m22s
CI / Build Individual Packages (rust-research-mcp) (push) Successful in 6m33s
update
2026-03-29 13:03:11 +02:00

66 lines
2.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# MCP Server Packages for Nix
## Overview
This repository provides Nix derivations for MCP (Model Context Protocol) servers that are not yet available in nixpkgs.
## Available Packages
| Package | Description | Language |
|------------------------------|---------------------------------------------------------------|------------|
| academic-search-mcp-server | Search academic papers via Semantic Scholar and Crossref | Python |
| duckduckgo-mcp-server | Web search and content fetching via DuckDuckGo | Python |
| kindly-web-search-mcp-server | Web search + content retrieval via Serper, Tavily, or SearXNG | Python |
| manim-mcp-server | Execute Manim animation code and return videos | Python |
| n8n-mcp | AI access to n8n node docs and workflow management | TypeScript |
| pdf-reader-mcp | Productionready PDF processing with parallel processing | TypeScript |
| rust-research-mcp | Accumulate and organize academic knowledge | Rust |
| simple-web-search-mcp | Zero-config web search and page reading for LLMs | TypeScript |
| zotero-mcp | Connect Zotero research library with AI assistants | Python |
## Usage
### Using the Overlay (Recommended)
Add this flake to your inputs and apply the overlay:
```nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
mcp-servers.url = "git+ssh://gitea@gitea.bueso.eu/luis/mcp-servers";
};
outputs = { nixpkgs, mcp-servers, ... }: {
# Apply the overlay to get packages in pkgs
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{
nixpkgs.overlays = [ mcp-servers.overlays.default ];
}
# Now you can use pkgs.manim-mcp-server
];
};
};
}
```
### Using Packages Directly
Access packages without the overlay:
```nix
{
mcp-servers.url = "git+ssh://gitea@gitea.bueso.eu/luis/mcp-servers";
outputs = { mcp-servers, ... }: {
# Access directly
myPackage = mcp-servers.packages.x86_64-linux.manim-mcp-server;
};
}
```
## License
Each packaged MCP server retains its original license. The Nix expressions in this repository are provided asis.