mcp-server-repairworld

mcp-server-repairworld

3.2

RepairWorld is an MCP server that provides tools for managing repair requests through a structured API.

RepairWorld is a Model Context Protocol (MCP) server designed to facilitate interaction with a repair request API. It allows AI models to efficiently create, retrieve, and list repair requests using a set of structured tools. Built with the fastmcp framework, RepairWorld ensures compliance with MCP standards, making it a reliable choice for developers looking to integrate repair management capabilities into their AI systems. The server is highly customizable, allowing users to set their API base URL and authentication key via the command line interface. Additionally, it offers seamless integration with various MCP-compatible agents, such as the Google Agent Development Kit (ADK) and Claude, enhancing its versatility and ease of use.

Features

  • MCP-compliant server built with fastmcp
  • Tools to create, view, and list repair requests
  • Customizable API base URL and authentication key via CLI
  • Easy integration with Google ADK, Claude, and other MCP-compatible agents

MCP Tools

  • {'Create Repair Request': 'Allows the creation of a new repair request.'}
  • {'View Repair Request by ID': 'Retrieves details of a specific repair request using its ID.'}
  • {'View All Repair Requests': 'Lists all existing repair requests.'}

Usage with Different Platforms

Google ADK

python
from adk import Agent

agent = Agent(api_key='your_api_key')
agent.connect('RepairWorld')
agent.create_repair_request(data)

Claude

python
import claude

client = claude.Client(api_key='your_api_key')
client.connect('RepairWorld')
client.create_repair_request(data)