nox-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@nox-mcpRun the tests using Python 3.12"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
nox-mcp
A Model Context Protocol (MCP) server that enables AI assistants to run nox sessions. This allows LLMs to discover and execute your project's test, lint, build, and other automation tasks.
Features
Discover sessions — List all available nox sessions with descriptions and Python versions
Run sessions — Execute sessions by name, tags, or keyword expressions
Filter by Python version — Override the default Python version for any session
Structured output — Returns JSON responses for easy parsing by AI tools
Related MCP server: replicant-mcp
Installation
Requires Python 3.10+ and nox installed in your PATH.
pip install nox-mcpOr with uv:
uv pip install nox-mcpQuick Start
Configure your MCP client
Add nox-mcp to your MCP client configuration. For example, in Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"nox": {
"command": "nox-mcp"
}
}
}Or if using uvx:
{
"mcpServers": {
"nox": {
"command": "uvx",
"args": ["nox-mcp"]
}
}
}Available Tools
Once configured, your AI assistant can use these tools:
nox_list_sessions
List all available nox sessions in the current project.
Returns: List of session objects with name, python version, and descriptionnox_run_session
Run one or more nox sessions.
Parameter | Type | Description |
| list[str] | Session names to run (e.g., |
| list[str] | Filter sessions by tags |
| str | Keyword expression (e.g., |
| str | Python version override (e.g., |
| int | Max seconds to wait (default: 300) |
Example Workflow
Ask your AI assistant: "What nox sessions are available?"
The assistant calls
nox_list_sessionsand shows you the optionsAsk: "Run the tests with Python 3.12"
The assistant calls
nox_run_session(sessions=["tests"], python="3.12")
Requirements
Python 3.10+
nox installed and available in PATH
An MCP-compatible client (Claude Desktop, etc.)
Development
# Clone the repository
git clone https://github.com/rvforest/nox-mcp.git
cd nox-mcp
# Install dependencies
uv sync
# Run tests
uv run nox -s test
# Run all checks
uv run nox -s checkLicense
MIT License — see LICENSE for details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceAn MCP server that supercharges AI assistants with powerful tools for software development, enabling research, planning, code generation, and project scaffolding through natural language interaction.Last updated1159100MIT
- AlicenseBqualityBmaintenanceAn MCP server that enables AI assistants to build, test, and debug Android applications by interacting directly with the Android development environment. It provides tools for managing emulators, executing Gradle tasks, running ADB commands, and performing UI automation via accessibility trees.Last updated1410616MIT
- AlicenseAqualityCmaintenanceA tool that enables AI assistants to conversationally scaffold, build, and publish Python MCP servers to PyPI. It automates the entire development lifecycle, including package naming, tool scaffolding, GitHub repository setup, and package publishing.Last updated10MIT
- Flicense-qualityDmaintenanceA portable MCP server enabling AI assistants to operate VS Code, including file management, extension control, and workspace automation.Last updated
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
An MCP server that integrates with Discord to provide AI-powered features.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rvforest/nox-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server