Skip to main content
Glama

Meseriasi MCP Server

Server Details

MCP server for meseriasi.ro, a Romanian homeowner-tradesperson marketplace.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

5 tools
create_projectAInspect

Create a new project on meseriasi.ro as a homeowner. Notifies nearby tradespeople automatically. Requires the caller to supply a valid Supabase access token in the "access_token" argument.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesShort descriptive title for the project (max 255 chars)
budgetNoApproximate budget in RON (optional)
locationYesCity / address where the work is needed
tradeTypeYesCategory of trade required (e.g. "electrician", "instalator")
descriptionNoDetailed description of the work needed
access_tokenYesSupabase JWT access token for the homeowner account

TDQS

A4.2/5.0
Behavior4/5

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

Since no annotations are provided, the description carries the full burden. It discloses key behaviors: automatic notification of nearby tradespeople and the requirement for a Supabase access token. It does not mention side effects, rate limits, or error conditions, but the disclosed behaviors are important.

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 two sentences, short and front-loaded. It immediately states the purpose and then adds key behavioral and auth details without redundancy.

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?

Given the schema covers all parameters, no output schema, and no annotations, the description provides a high-level overview including automatic notification and auth requirement. It could elaborate on return values or failure modes, but it is sufficiently complete for its complexity.

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?

Schema coverage is 100%, so the input schema already describes all parameters with individual descriptions. The description adds minor context (homeowner role, access token requirement) but does not significantly enhance understanding beyond the schema. Baseline 3 is appropriate.

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 verb 'Create', the resource 'project', and the context 'on meseriasi.ro as a homeowner'. It also mentions automatic notification of tradespeople, which distinguishes it from sibling tools like search_tradespeople or start_conversation.

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 indicates it is for homeowners and requires a valid access token. It implies usage when creating a project but does not explicitly state when not to use or list alternatives. However, the context is clear and the sibling tools are sufficiently different.

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

get_tradesperson_profileAInspect

Fetch the full profile of a tradesperson by their UUID (or legacy WordPress integer ID). Includes bio, location, trade type, and bid statistics.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesTradesperson UUID or legacy integer ID

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It describes a read operation and lists included fields, but does not disclose any behavioral traits such as authentication requirements, rate limits, error handling, or whether the profile is cached. Basic description with no depth.

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?

Two sentences, no wasted words. The most important information (what it does, what it returns) is front-loaded. Efficient and to the point.

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?

For a simple fetch operation with one parameter and no output schema, the description adequately covers the purpose and return fields (bio, location, trade type, bid statistics). It could mention common errors or edge cases, but it is sufficient for basic use.

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?

Schema coverage is 100% with one parameter 'id' described as a string. The description adds value by specifying that the ID can be a UUID or a legacy WordPress integer ID, which is not in the schema description. This clarifes acceptable input formats.

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?

Clearly states the verb 'Fetch' and the resource 'full profile of a tradesperson'. The description explicitly lists included fields (bio, location, trade type, bid statistics) and the identification methods (UUID or legacy integer ID). This distinguishes it from sibling tools like search_tradespeople which returns a list, and create_project which creates.

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

Usage Guidelines3/5

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

Implied usage: when you have a tradesperson's UUID or legacy ID. However, no explicit guidance on when not to use it or alternatives. The sibling tools are different enough to infer use cases, but the description does not provide a direct comparison or context for selection.

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

request_chat_otpAInspect

Send a one-time password (OTP) to the user's email so they can verify their identity before starting a conversation with a tradesperson. Call this first, then call start_conversation with the OTP the user receives.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe homeowner's email address

TDQS

A4/5.0
Behavior3/5

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

No annotations provided. The description discloses the action (send email OTP) and purpose (verify identity before conversation). It lacks details on potential side effects like rate limits or expiration, but for a simple tool it is adequate.

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?

Two sentences with no wasted words. The first sentence states the action and purpose, the second gives usage guidance. Front-loaded and efficient.

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?

For a simple tool with one parameter and no output schema, the description covers the main purpose and usage. Could mention possible errors or response, but it is largely 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?

Schema coverage is 100% with a clear description for the email parameter. The description does not add new semantics beyond what the schema provides, so baseline 3 is appropriate.

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 verb 'Send' and the resource 'one-time password to the user's email'. It distinguishes from sibling tools by explicitly stating it should be called before start_conversation.

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 provides explicit ordering guidance: 'Call this first, then call start_conversation with the OTP the user receives.' It does not mention when not to use, but the context is clear.

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

search_tradespeopleAInspect

Search for tradespeople on meseriasi.ro by location and/or category (trade type). Returns a paginated list of matching profiles.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default 1)
categoryNoTrade type / profession category (e.g. "electrician", "instalator", "zugrav")
locationNoCity or region name to filter by (e.g. "București", "Cluj-Napoca")
per_pageNoResults per page, max 50 (default 10)

TDQS

A3.7/5.0
Behavior3/5

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

No annotations provided, so the description carries full burden. It mentions pagination ('Returns a paginated list'), which is a behavioral trait, but lacks details on sorting, default behavior when no parameters are supplied, authentication requirements, or error cases. This is adequate but not comprehensive.

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 two sentences long, front-loading the action and result. Every word is meaningful, with no redundancy or filler.

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

Completeness3/5

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

Given 4 optional parameters, no output schema, and no annotations, the description covers the basic purpose and output. However, it omits details about result format, sorting, allowed combinations of parameters, and pagination semantics (e.g., how to navigate pages). Completeness is adequate but not thorough.

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?

Schema description coverage is 100%, with each parameter adequately described in the schema. The tool description adds no additional meaning beyond the schema ('by location and/or category' maps to 'location' and 'category' parameters). Baseline score 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 clearly states the verb (Search for), resource (tradespeople), platform (meseriasi.ro), and search criteria (location and/or category). It also describes the output (paginated list of profiles). This distinguishes it from sibling tools like create_project or get_tradesperson_profile.

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

Usage Guidelines3/5

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

The description implies usage for finding tradespeople but provides no explicit guidance on when to use this tool versus alternatives such as get_tradesperson_profile or start_conversation. No conditions or exclusions are mentioned.

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

start_conversationAInspect

Verify the OTP sent to the user's email and start a direct conversation with a tradesperson. Creates a homeowner account automatically if the email is new.

ParametersJSON Schema
NameRequiredDescriptionDefault
otpYesThe 6-digit OTP code the user received by email
emailYesThe homeowner's email address (same as used in request_chat_otp)
messageYesThe initial message to send to the tradesperson
tradesperson_idYesUUID of the tradesperson to contact

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It discloses the auto-creation side effect and OTP verification, but does not cover error conditions (e.g., invalid OTP), rate limits, or authentication requirements.

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 two sentences, front-loading the key action. Every sentence adds value with no redundancy or fluff.

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?

The description explains purpose and side effects adequately for a 4-param tool without output schema. It lacks detail on return values or error handling, but covers essential behavioral context.

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?

Schema coverage is 100% with descriptions. The description adds minor context (e.g., email ties to request_chat_otp, OTP digit count) but does not significantly enhance meaning beyond the schema.

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 tool's purpose: verifying an OTP, starting a conversation, and auto-creating an account if new. It uses specific verbs and resources, and distinguishes from sibling 'request_chat_otp'.

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

Usage Guidelines3/5

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

The description implies usage context (after requesting OTP) and notes account auto-creation for new emails, but lacks explicit when-not-to-use or alternative tool references. No exclusions are mentioned.

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

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    An MCP server for Microweber sites that wraps the existing HTTP API to manage content (pages, posts, products) and media without installing any plugin. It uses admin credentials and handles session + CSRF authentication automatically.
  • F
    license
    Not graded
    quality
    C
    maintenance
    MCP server for managing OLX.ba / PIK.ba shops, enabling listing management, category/location queries, sponsor operations, and image uploads via natural language.
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct action: project creation, profile retrieval, OTP request, tradesperson search, and conversation initiation. No two tools have overlapping purposes, ensuring clear agent selection.

Naming Consistency4/5

Tools generally follow verb_noun pattern (e.g., create_project, search_tradespeople). Minor inconsistency: 'tradesperson_profile' uses singular while 'tradespeople' uses plural, but overall pattern is consistent and readable.

Tool Count5/5

With 5 tools covering project creation, search, profiles, and chat, the set is well-scoped for a homeowner-tradesperson matching server. Each tool serves a clear role without redundancy.

Completeness3/5

Core workflow is covered (create project, search, start conversation), but notable gaps exist: no tools for updating/deleting projects, viewing bids, or managing conversations. Agents may face dead ends.

Resources