TrueNAS Scale MCP Server
Provides tools to manage TrueNAS Scale Custom Apps, including deploying, updating, deleting, starting, stopping, and monitoring Docker Compose-based applications via WebSocket API.
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., "@TrueNAS Scale MCP ServerList all my TrueNAS Custom Apps"
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.
TrueNAS Scale MCP Server
A Model Context Protocol (MCP) server for managing TrueNAS Scale Custom Apps through Docker-based deployments.
Overview
This MCP server enables AI assistants like Claude to manage TrueNAS Scale Custom Apps using natural language commands. It provides tools for deploying, managing, and monitoring Docker Compose applications on TrueNAS Scale systems.
Features
11 MCP Tools for comprehensive Custom App management
Docker Compose Conversion to TrueNAS Custom App format
Security Validation with input sanitization
Mock Development Mode for testing without TrueNAS access
Comprehensive Test Suite with >80% coverage
WebSocket API Integration with TrueNAS Electric Eel
Quick Start
Prerequisites
Python 3.10+
Poetry for dependency management
TrueNAS Scale 24.10+ (Electric Eel) with API access
Installation
# Clone the repository
git clone https://github.com/yourusername/truenas-mcp-server.git
cd truenas-mcp-server
# Install dependencies
poetry install
# Install pre-commit hooks (optional)
poetry run pre-commit installConfiguration
Set up environment variables for your TrueNAS system:
export TRUENAS_HOST="nas.pvnkn3t.lan"
export TRUENAS_API_KEY="your-api-key-here"
export TRUENAS_PORT="443"
export TRUENAS_PROTOCOL="wss"
export TRUENAS_SSL_VERIFY="false" # Use "true" for production
export DEBUG_MODE="false"Testing the Server
# Test with mock TrueNAS (no real TrueNAS required)
MOCK_TRUENAS=true poetry run python src/truenas_mcp/mcp_server.py
# Test with real TrueNAS
poetry run python src/truenas_mcp/mcp_server.pyClaude Code Integration
Add this server to your Claude Code MCP configuration:
Option 1: Direct Python Execution
Add to your ~/.claude/mcp-servers/production.json:
{
"mcpServers": {
"truenas-scale": {
"type": "stdio",
"command": "python",
"args": ["/path/to/truenas-mcp-server/src/truenas_mcp/mcp_server.py"],
"env": {
"TRUENAS_HOST": "nas.pvnkn3t.lan",
"TRUENAS_API_KEY": "your-api-key-here",
"TRUENAS_PORT": "443",
"TRUENAS_PROTOCOL": "wss",
"TRUENAS_SSL_VERIFY": "false"
}
}
}
}Option 2: Poetry Execution
{
"mcpServers": {
"truenas-scale": {
"type": "stdio",
"command": "poetry",
"args": ["run", "python", "src/truenas_mcp/mcp_server.py"],
"cwd": "/path/to/truenas-mcp-server",
"env": {
"TRUENAS_HOST": "nas.pvnkn3t.lan",
"TRUENAS_API_KEY": "your-api-key-here",
"TRUENAS_PORT": "443",
"TRUENAS_PROTOCOL": "wss",
"TRUENAS_SSL_VERIFY": "false"
}
}
}
}Usage Examples
Once configured, you can use these natural language commands with Claude:
# List all Custom Apps
claude "List all my TrueNAS Custom Apps and their status"
# Deploy a new app
claude "Deploy this docker-compose.yml as a Custom App named 'my-app'"
# Manage existing apps
claude "Stop the Custom App named 'plex'"
claude "Start the Custom App named 'nextcloud'"
claude "Show detailed status of Custom App 'jellyfin'"
# Get logs
claude "Show me the last 50 lines of logs from Custom App 'nginx'"
# Delete an app
claude "Delete the Custom App 'old-app' including its volumes"Available MCP Tools
Connection Management
test_connection- Test TrueNAS API connectivity
Custom App Management
list_custom_apps- List all Custom Apps with statusget_custom_app_status- Get detailed app informationstart_custom_app- Start a stopped appstop_custom_app- Stop a running app
Deployment Tools
deploy_custom_app- Deploy new app from Docker Composeupdate_custom_app- Update existing app configurationdelete_custom_app- Remove app and optionally its volumes
Validation & Monitoring
validate_compose- Validate Docker Compose for TrueNAS compatibilityget_app_logs- Retrieve application logs
Development
Running Tests
# Run all tests
poetry run pytest
# Run with coverage
poetry run pytest --cov=src/truenas_mcp --cov-report=html
# Run specific test categories
poetry run pytest -m unit # Unit tests only
poetry run pytest -m integration # Integration tests onlyCode Quality
# Format code
poetry run black .
# Lint code
poetry run ruff check . --fix
# Type checking
poetry run mypy .
# Run all quality checks
poetry run pre-commit run --all-filesMock Development
For development without a TrueNAS system:
# Enable mock mode
export MOCK_TRUENAS=true
# Run the server
poetry run python src/truenas_mcp/mcp_server.pyDocker Compose Conversion
The server automatically converts Docker Compose files to TrueNAS Custom App format:
Supported Features
Volume mounts (named volumes → IX volumes, bind mounts → host paths)
Port forwarding (container ports → host ports)
Environment variables
Network configuration (bridge/host modes)
Restart policies
Security Validations
Prevents privileged container mode
Blocks dangerous system directory mounts
Validates port conflicts
Enforces resource limits
Troubleshooting
Connection Issues
# Test API connectivity
curl -k -H "Authorization: Bearer YOUR_API_KEY" https://nas.pvnkn3t.lan/api/v2.0/system/info
# Check WebSocket connection
export TRUENAS_HOST=nas.pvnkn3t.lan TRUENAS_API_KEY=your-key
poetry run python -c "
import asyncio
from src.truenas_mcp.truenas_client import TrueNASClient
asyncio.run(TrueNASClient().test_connection())
"Common Issues
"Connection refused": Check
TRUENAS_HOSTandTRUENAS_PORT"Authentication failed": Verify
TRUENAS_API_KEYis correct"SSL verification failed": Set
TRUENAS_SSL_VERIFY=falsefor self-signed certificates
Architecture
┌─────────────────┐ MCP Protocol ┌──────────────────┐ WebSocket API ┌─────────────────┐
│ AI Assistant │ ◄──────────────────► │ TrueNAS MCP │ ◄──────────────────► │ TrueNAS Scale │
│ (Claude.ai) │ JSON-RPC 2.0 │ Server │ auth + app.* │ Electric Eel │
└─────────────────┘ └──────────────────┘ └─────────────────┘Core Components
MCP Protocol Handler: Manages client communication and capability exchange
TrueNAS API Client: Handles WebSocket connection and authentication
Docker Compose Converter: Transforms Docker Compose to TrueNAS Custom App format
Validation Engine: Validates inputs and security constraints
Tool Registry: Manages available tools and their schemas
Contributing
Fork the repository
Create a feature branch:
git checkout -b feature/amazing-featureMake your changes
Run tests:
poetry run pytestRun quality checks:
poetry run pre-commit run --all-filesCommit your changes:
git commit -m 'Add amazing feature'Push to the branch:
git push origin feature/amazing-featureOpen a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Requirements
This implementation fulfills the complete TrueNAS MCP Requirements v2.0 specification with:
✅ 11 MCP tools with JSON schema validation
✅ WebSocket API integration with TrueNAS Electric Eel
✅ Docker Compose to Custom App conversion
✅ Comprehensive security validation
✅ >80% test coverage
✅ Production-ready error handling and logging
Support
For issues, questions, or contributions, please open an issue on GitHub.
Status: Production Ready ✅
MCP Protocol: 2.0 Compatible
TrueNAS: Electric Eel (24.10+) Compatible
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/svnstfns/truenas-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server