๐ค MCP Server for AI Assistants
What is MCP?
The Model Context Protocol (MCP) allows AI assistants like Claude Desktop to interact with external services. KrisPC provides an MCP server that enables AI assistants to:
- Query available repair services and pricing
- Get information about supported computer brands
- Check service areas and coverage
- Access technology stack information
๐ Quick Setup
1. Install Dependencies
pip install mcp httpx
2. Download the MCP Server
curl -O https://krispc.fr/static/mcp/krispc_mcp_server.py
3. Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"krispc": {
"command": "python",
"args": ["/path/to/krispc_mcp_server.py"],
"env": {
"KRISPC_API_URL": "https://krispc.fr/api/krispc"
}
}
}
}
๐ ๏ธ Available Tools
| Tool Name | Description |
|---|---|
get_services |
List all repair services with descriptions and pricing |
get_brands |
List supported computer manufacturers |
get_service_areas |
Get list of cities covered for on-site services |
get_technologies |
View technologies used to build the website |
submit_contact |
Submit a contact request for repair services |