We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/calumjs/MCP.Printer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_print.py•356 B
#!/usr/bin/env python3
"""
Test script for MCP Label Printer
Run this to verify your printer is working correctly.
"""
from mcp_label_printer.printer import print_label
# Test print
result = print_label(
url="https://github.com/calumjs/MCP.Printer",
issue_number="#1",
title="Test Label",
description="Printer working!"
)
print(result)