Skip to main content
Glama

Fixidu

Server Details

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

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Fixitindia/FIXIDU-MCP-SERVER
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct role: listing top-level categories, drilling into a category, searching across the catalog, fetching item details, and providing the app download link. There is no meaningful overlap between these actions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: browse_service, get_app_download_link, get_service_price, list_service_categories, search_services. This makes the set predictable and easy to navigate.

Tool Count5/5

Five tools is a well-scoped size for a catalog browsing and app-link helper server. Each tool covers a distinct step in the user journey without unnecessary bulk or missing essentials.

Completeness5/5

The tool set fully covers the pre-booking discovery path: list categories, browse hierarchy, search, inspect details, and hand off to the app. Since actual bookings are explicitly delegated to the app, there are no obvious gaps in the server's intended scope.

Available Tools

5 tools
browse_serviceBrowse a Fixidu service categoryA
Read-onlyIdempotent
Inspect

Given a service category id (from list_service_categories), return what's inside it: either bookable catalog items with prices and images directly, or its sub-categories (drill in again with the sub-category's catalog) — mirrors how the Fixidu app itself branches.

ParametersJSON Schema
NameRequiredDescriptionDefault
serviceIdYesA service category id from list_service_categories
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark this as read-only, open-world, and idempotent. The description adds valuable behavioral context beyond those hints: the output is heterogeneous (either direct items or sub-categories) and recursive drilling is expected. This helps the agent anticipate response shape and plan subsequent calls.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the core action, then efficiently explains the two possible output types and the recursive pattern. Every clause contributes meaningful information, and there is no padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Without an output schema, the description does a good job of setting expectations for the response: either items with pricing/images or sub-categories to drill into. It omits edge-case details (e.g., invalid IDs, pagination), but for a browse tool with one parameter and clear branch behavior, it is essentially complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully describes the sole parameter serviceId as 'A service category id from list_service_categories' with 100% coverage. The description repeats this information without adding new semantics, so it meets the baseline for high coverage but does not elevate beyond it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: given a service category id, return what's inside it (either bookable catalog items with prices/images or sub-categories). It explicitly distinguishes from sibling tools by describing the drill-down behavior that mirrors the Fixidu app, making it more specific than a generic 'browse'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context: you must first use list_service_categories to obtain a serviceId, and you can drill into sub-categories recursively. It does not explicitly state when NOT to use this versus search_services or get_service_price, but the input contract and branching behavior provide clear enough guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_service_priceGet full details and price for one Fixidu catalog itemA
Read-onlyIdempotent
Inspect

Get full details for a single bookable catalog item by its id (from search_services or browse_service): price, original price, duration, rating, image, and its requirements/inclusions/exclusions/FAQs.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemIdYesThe catalog item's numeric id
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and openWorldHint, so the description doesn't need to cover safety. It adds behavioral detail by enumerating the exact output fields (price, original price, duration, rating, image, requirements/inclusions/exclusions/FAQs) and the 'bookable' constraint, which goes beyond the annotations. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that begins with the primary action and immediately specifies the target resource. It packs a lot of specific detail (field list, source tools) without any filler or redundancy, earning every word.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple complexity (1 parameter, no output schema, full schema coverage, and helpful annotations), this description is complete. It explains how to get the item ID, what data will be returned, and the tool's read-only nature via the annotations. There is no missing information for an agent to select and invoke this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides a full description for the single parameter itemId ('The catalog item's numeric id'), giving 100% schema coverage. The description reiterates 'by its id' and mentions the source tools, but it doesn't add new semantic meaning beyond what the schema already conveys. Baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and names the exact resource (a single bookable catalog item by its id). It lists the specific data fields returned (price, original price, duration, rating, image, requirements/inclusions/exclusions/FAQs), clearly distinguishing this from sibling tools like search_services (which searches lists) and browse_service (which browses categories).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states that the id comes from 'search_services or browse_service', establishing a clear workflow and prerequisite for using this tool. However, it doesn't explicitly explain when to use this tool instead of those siblings or mention any exclusions, so guidance is strong but not exhaustive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_service_categoriesList Fixidu service categoriesA
Read-onlyIdempotent
Inspect

List Fixidu's top-level service categories (e.g. Electrician, Plumber, Cleaning), each with an id, title, and a real image URL. Use this first to see the overall catalog structure, then browse_service to drill into one.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the safety profile is clear. The description adds useful context about the return payload (id, title, real image URL) and the 'top-level' scope, which the annotations do not cover. It does not deeply discuss pagination or rate limits, but for a read-only list operation the added context is sufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exactly two sentences. The first sentence front-loads the verb, resource, examples, and return fields. The second sentence gives usage order and sibling reference. Every word contributes value; there is zero padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no parameters, strong annotations, and a simple output described in the narrative, the description fully equips an agent to invoke and interpret results. It also positions the tool within the workflow ('first', then browse_service). No output schema exists, but the description names the key output fields, so completeness is high.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, and schema description coverage is 100% vacuously. Per the rubric, a baseline of 4 is given for 0 params. The description does not need to compensate for parameter documentation, and it adds no confusing param information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'List' plus the resource 'Fixidu's top-level service categories' with examples (Electrician, Plumber, Cleaning). It clearly distinguishes itself from siblings by explicitly noting the 'top-level' scope and referencing browse_service for drilling down.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: 'Use this first to see the overall catalog structure, then browse_service to drill into one.' This directly tells when to use this tool and indicates an alternative for deeper exploration, making the usage context unmistakable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_servicesSearch Fixidu's service catalogA
Read-onlyIdempotent
Inspect

Search across Fixidu's full catalog (every bookable item across every category) by keyword, matching item title, category, and sub-category. Returns matching items with id, title, price, category, and a real image URL. Use this when the user asks about a specific kind of service, e.g. 'AC repair' or 'switch replacement'.

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordYesSearch term, e.g. 'AC repair', 'switch replacement', 'deep cleaning'
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the safety profile is covered. The description adds return semantics: 'Returns matching items with id, title, price, category, and a real image URL' and search criteria, providing helpful context beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with the core action and scope. Each sentence adds value: action/scope, return data, and usage guidance. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a low-complexity tool with one fully documented parameter and read-only/idempotent annotations, the description is complete. It covers scope, matching semantics, return fields, and a concrete use case. No output schema exists, so the return-field listing is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single keyword parameter is fully described in the schema, meeting the 100% coverage baseline. The description adds meaning by specifying that matching occurs against 'item title, category, and sub-category' and gives concrete examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Search' and clearly defines scope: 'across Fixidu's full catalog (every bookable item across every category)'. It also names match fields (title, category, sub-category) and return fields, distinguishing it from siblings like list_service_categories and get_service_price.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: 'Use this when the user asks about a specific kind of service' with examples. However, it does not mention when not to use it or compare to alternatives beyond that.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Enables AI assistants to search and retrieve detailed classified listings, including specifications, images, and seller info, from OLX India.
    2
    14
    1
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    Home Services MCP by HireNimbus lets AI agents find, compare, and book verified local pros for handyman, renovation, HVAC, plumbing, electrical, and landscaping jobs in supported US metro markets.
  • A
    license
    A
    quality
    B
    maintenance
    Search for products available in physical stores near you. Find prices, stock, and store locations for hardware, tools, and construction supplies. Useful when you need something today and can't wait for delivery. 5 tools: search products, search stores, get product details, get store details, list categories. No authentication required. Covers ~2400 products across ~4000 stores in Spain.
    18
    1
    Apache 2.0
  • F
    license
    -
    quality
    D
    maintenance
    The owner-verified local business data + service & menu-price layer for AI agents. Owner-authored business profiles where every response carries provenance — verification level, completeness score, freshness timestamps, and upstream sources. * Search & profiles — find businesses by name, category, city, or geo-radius; full profiles with contacts, hours, media, ratings. * Price layer

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.