PrintSmith MCP Server
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., "@PrintSmith MCP ServerWhat is the current production status of job 5024?"
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.
PrintSmith MCP Server
An MCP (Model Context Protocol) server that connects Claude to PrintSmith Vision, enabling AI-assisted print shop management.
All operations are READ-ONLY - this server only queries data, never modifies it.
Features
Tool | Description |
| Search customers by name, ID, or account number |
| Get production status of a specific job |
| List jobs filtered by status (in production, ready for pickup, etc.) |
| Get all jobs for a specific customer |
| Accounts receivable summary |
| Get details of a specific estimate |
| List estimates awaiting conversion |
| Verify PrintSmith connection |
Quick Start (Mock Data)
Test the server without a PrintSmith connection:
cd printsmith-mcp
pip install -r requirements.txt
USE_MOCK_DATA=true python src/server.pyDeployment on Proxmox LXC
Step 1: Create the LXC Container
On your Proxmox host:
# Download the setup script
scp scripts/setup-lxc.sh root@proxmox:/tmp/
# SSH to Proxmox and run
ssh root@proxmox
cd /tmp
# Edit variables at top of script, then run:
bash setup-lxc.shThis creates an Ubuntu 24.04 LXC container with Python installed.
Step 2: Deploy Application Files
From your local machine (where you downloaded this repo):
# Set your container ID
CTID=200
# Copy files to container
pct push $CTID src/server.py /opt/printsmith-mcp/src/server.py
pct push $CTID src/printsmith_client.py /opt/printsmith-mcp/src/printsmith_client.py
pct push $CTID requirements.txt /opt/printsmith-mcp/requirements.txt
pct push $CTID scripts/install.sh /opt/printsmith-mcp/scripts/install.shOr use the deploy script:
bash scripts/deploy-to-lxc.sh 200Step 3: Install Inside Container
pct enter 200
cd /opt/printsmith-mcp
bash scripts/install.shStep 4: Configure PrintSmith Connection
nano /opt/printsmith-mcp/.envEdit these values:
PRINTSMITH_BASE_URL=https://your-printsmith-server.com
PRINTSMITH_API_TOKEN=your-api-token-here
USE_MOCK_DATA=falseStep 5: Start the Service
systemctl start printsmith-mcp
systemctl status printsmith-mcp
# View logs
journalctl -u printsmith-mcp -fStep 6: Test
# From inside container
curl http://localhost:8080/health
# From Proxmox host (replace IP)
curl http://10.0.0.50:8080/healthConnecting to Claude
Option A: Claude Desktop (if LXC has STDIO access)
Not recommended for LXC. Use Option B.
Option B: Remote MCP Connection (Recommended)
The server runs in HTTP/SSE mode, accessible at:
http://<container-ip>:8080/sseTo use with Claude, you'll need an MCP client that supports remote servers. Check Anthropic's documentation for current options.
Option C: For Development/Testing
You can also run the server locally in STDIO mode for Claude Desktop:
MCP_TRANSPORT=stdio python src/server.pyPrintSmith API Reference
Getting Your API Token
Log into PrintSmith Vision as administrator
Go to Setup → Preferences → API Settings
Generate or copy your API token
API Endpoints Used (Read-Only)
Endpoint | Method | Description |
| GET | Customer/account data |
| GET | Invoice data |
| GET | Estimate data |
| GET | Job/production data |
| GET | Contact data |
Authentication
PrintSmith uses token-in-URL authentication:
GET https://your-server.com/AccountAPI/YOUR_API_TOKEN?account_id=1234Common Query Parameters
Parameter | Description |
| Primary key ID |
| Display account number |
| Contact primary key |
| Range filter start (YYYY-MM-DD) |
| Range filter end (YYYY-MM-DD) |
| Status filter |
Response Format
All responses are JSON:
{
"id": "1234",
"name": "Acme Corporation",
"balance": 2450.00,
"credit_status": "good"
}Error Responses
{
"status": "Failure",
"message": "Account with number(account_account_id): 9999 was not found."
}Environment Variables
Variable | Default | Description |
| (required) | PrintSmith server URL |
| (required) | API authentication token |
|
| Verify SSL certificates |
|
| Request timeout in seconds |
|
| Transport: |
|
| HTTP server port |
|
| HTTP server bind address |
|
| Use mock data (no PrintSmith needed) |
Project Structure
printsmith-mcp/
├── src/
│ ├── server.py # MCP server (main entry point)
│ └── printsmith_client.py # PrintSmith API client (read-only)
├── scripts/
│ ├── setup-lxc.sh # Create LXC container on Proxmox
│ ├── deploy-to-lxc.sh # Copy files to container
│ └── install.sh # Install inside container
├── requirements.txt
└── README.mdSecurity Considerations
API Token: Stored in
.envfile with restricted permissions (600)Read-Only: All operations are GET requests only
Network: Consider firewall rules to restrict access to MCP port
SSL: Enable
PRINTSMITH_VERIFY_SSLin production
For a multi-tenant SaaS, you'll need additional:
Per-customer credential storage (encrypted)
Authentication for the MCP endpoint
Rate limiting
Audit logging
Troubleshooting
Container won't start
pct status 200
pct config 200
journalctl -u pve-container@200Service fails to start
pct enter 200
journalctl -u printsmith-mcp -n 50Can't connect to PrintSmith
# Test from inside container
curl -v "https://your-printsmith-server.com/AccountAPI/YOUR_TOKEN?limit=1"SSL certificate errors
# Temporarily disable SSL verification
echo "PRINTSMITH_VERIFY_SSL=false" >> /opt/printsmith-mcp/.env
systemctl restart printsmith-mcpNext Steps
Test with mock data - Verify everything works
Connect to real PrintSmith - Add your credentials
Identify high-value features - What do users need most?
Add authentication - Secure the MCP endpoint
Build multi-tenant - Credential management for multiple customers
Resources
PrintSmith Vision - Contact EFI/ePS for API documentation
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/rfrye/printsmith-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server