nu_plugin_mcp
Runs MCP servers whose tools are ordinary Nushell closures, supporting stdio and Streamable HTTP.
README
nu_plugin_mcp
nu_plugin_mcp runs Model Context Protocol servers whose tools are ordinary
Nushell closures. It supports MCP 2025-11-25 over stdio and Streamable HTTP.
Build and register
The plugin targets Nushell 0.114.1 and Rust 1.95 or newer.
cargo build --release
plugin add target/release/nu_plugin_mcp
plugin use mcp
For a script or MCP client, nu --plugins loads the executable without editing
the user's plugin registry:
nu --plugins /absolute/path/to/nu_plugin_mcp server.nu
Define tools
mcp tool creates the descriptor accepted by mcp. The closure receives the
MCP arguments as one positional record.
let prefix = "Hello"
let greet = mcp tool greet {|args|
$"($prefix), ($args.name)!"
} --title "Greeter" --description "Greet a person" --input-schema {
type: object
properties: {
name: {type: string}
}
required: [name]
additionalProperties: false
} --annotations {
read_only_hint: true
idempotent_hint: true
open_world_hint: false
}
The input_schema default is {type: object, additionalProperties: true}.
output_schema has no default. When supplied, it must have type: object, and
the closure must return a matching record.
Manual descriptor records may contain name, closure, title, description,
input_schema, output_schema, and annotations. Unknown fields and duplicate
tool names are rejected before the server starts.
Stdio server
stdio is the default transport:
mcp [$greet]
The MCP client launches Nushell, which in turn launches the plugin. A client
configuration can therefore point at a Nushell script containing the tool
definitions and final mcp command:
{
"command": "nu",
"args": [
"--no-config-file",
"--plugins",
"/absolute/path/to/nu_plugin_mcp",
"/absolute/path/to/server.nu"
]
}
Nushell must run the plugin protocol over its local socket so the inherited stdin and stdout remain available to MCP. The command detects an incompatible stdio plugin connection and reports an error.
Streamable HTTP server
Descriptors can also arrive through the pipeline:
[$greet] | mcp --transport http --host 127.0.0.1 --port 8080 --path /mcp
The MCP URL is http://127.0.0.1:8080/mcp. The command stays in the foreground;
press Ctrl-C to shut down the server, or use Nushell jobs when you intentionally
want background execution.
Set --log-level to trace, debug, info, warn, error, or off to
control stderr logging. It defaults to info.
HTTP has no authentication or TLS in this version. Binding --host beyond
loopback emits a warning, but it still exposes every closure to network clients.
Only use a non-loopback host on a trusted, separately protected network.
Results and errors
- Strings become MCP text content.
- Records become
structuredContentand also JSON text for older clients. - Other JSON-compatible Nushell values become JSON text.
- Schema failures and closure errors are returned with
isError: true. - Unknown tool names are returned as MCP protocol errors.
Schemas use JSON Schema 2020-12. Local references work; HTTP and filesystem reference resolution is disabled.
Development
Run the complete repository check through Nushell:
nu scripts/check.nu
Tracing is written only to stderr. The default level is info; use
--log-level off to disable it entirely.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.