# Fixidu [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/Fixitindia/FIXIDU-MCP-SERVER  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/fixidu

## Description
Browse Fixidu live home-services catalog in India - categories, real prices, images.

## Tools
Capabilities this server exposes over MCP:

- **list_service_categories** — Top-level categories (Electrician, Plumber, Cleaning, ...) with images
- **browse_service** — Items or sub-categories within a category
- **search_services** — Keyword search across the full catalog
- **get_service_price** — Full price/detail for one item: price, duration, rating, inclusions/exclusions/FAQs
- **get_app_download_link** — Fixidu app link (Android/iOS) — booking, payment, and account access all require the app

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "fixidu": {
    "command": "npx",
    "args": ["mcp-remote","https://mcp.fixidu.com/mcp"]
  }
}
```

## Documentation & README

# Fixidu MCP Server

Browse Fixidu's live home-services catalog — categories, real prices, and real images — from any MCP-compatible AI assistant. Read-only, no login required.

Fixidu is a home-services marketplace (electricians, plumbers, cleaning, appliance repair, and more) operating in India.

## Endpoint

```
https://mcp.fixidu.com/mcp
```

Streamable HTTP, stateless, no authentication needed. Live landing page with the same setup info: https://mcp.fixidu.com

## Install on Claude

**Using Connectors (Claude subscription)**
1. Open Claude
2. Settings → Connectors → Add custom connector
3. URL: `https://mcp.fixidu.com/mcp`
4. Save and restart Claude

**Claude Code (CLI)**
```bash
claude mcp add --transport http fixidu https://mcp.fixidu.com/mcp
```

**Manual configuration (free plan)**

Add to `claude_desktop_config.json`:
```json
{
  "mcpServers": {
    "fixidu-mcp": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.fixidu.com/mcp"]
    }
  }
}
```

## Install on ChatGPT

Settings → Connectors → Add custom connector → URL: `https://mcp.fixidu.com/mcp` → Authentication: **None**. (Requires a ChatGPT plan with custom connectors enabled.)

## Install on Codex (OpenAI Codex CLI)

Add to `~/.codex/config.toml`:
```toml
[mcp_servers.fixidu]
command = "npx"
args = ["mcp-remote", "https://mcp.fixidu.com/mcp"]
```
This uses the same universal stdio-bridge pattern as Claude's manual config above, which works regardless of whether your Codex version natively understands remote/Streamable HTTP servers yet. If your version does support a direct URL, check `codex mcp --help` or current docs — that syntax has moved between versions.

## Install in VS Code

**One-click:**

[![Install MCP](https://img.shields.io/badge/Install-FixiduMCP-D64545)](https://insiders.vscode.dev/redirect?url=vscode:mcp/install?%7B%22type%22%3A%22http%22%2C%22name%22%3A%22fixidu-mcp%22%2C%22version%22%3A%221.1.0%22%2C%22description%22%3A%22Browse%20Fixidu%20live%20home-services%20catalog%20-%20categories%2C%20prices%2C%20images%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.fixidu.com%2Fmcp%22%2C%22author%22%3A%22Fixidu%22%2C%22tags%22%3A%5B%22fixidu-mcp%22%2C%22mcp%22%2C%22server%22%2C%22home-services%22%5D%2C%22categories%22%3A%5B%22mcp%22%5D%7D)

**Manual:** add to your `mcp.json`:
```json
{
  "servers": {
    "fixidu-mcp": {
      "url": "https://mcp.fixidu.com/mcp",
      "type": "http"
    }
  }
}
```

## Tools

| Tool | What it does |
|---|---|
| `list_service_categories` | Top-level categories (Electrician, Plumber, Cleaning, ...) with images |
| `browse_service` | Items or sub-categories within a category |
| `search_services` | Keyword search across the full catalog |
| `get_service_price` | Full price/detail for one item: price, duration, rating, inclusions/exclusions/FAQs |
| `get_app_download_link` | Fixidu app link (Android/iOS) — booking, payment, and account access all require the app |

## Example prompts

- "What services does Fixidu offer?"
- "How much does AC repair cost?"
- "Search for switch replacement services"
- "Show me everything under Cleaning"

## What this doesn't do

No booking, no payments, no account access. This server only reads Fixidu's public catalog — the same data the Fixidu app itself shows. Booking a service still happens in the Fixidu app, since that requires a logged-in, authenticated user and a completed payment.

## Disclaimer

This server is provided as-is for browsing Fixidu's public service catalog. It does not collect personal information, process payments, or create bookings on your behalf.

