Skip to main content
Glama

WeJob

Server Details

Read-only MCP server for public WeJob jobs, formations, and companies.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
WeJob-IT/WeJob-MCP
GitHub Stars
1

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 3.8/5 across 8 of 8 tools scored.

Server CoherenceC
Disambiguation2/5

The generic 'fetch' and 'search' tools overlap significantly with the type-specific getters and searches. For example, 'fetch' can retrieve any item by ID with a prefix, making 'wejob_get_company', 'wejob_get_formation', and 'wejob_get_job' redundant. This ambiguity may cause an agent to choose the wrong tool.

Naming Consistency2/5

Tool names are inconsistent: the generic tools use plain verbs like 'fetch' and 'search', while the type-specific tools all have the 'wejob_' prefix and use 'get' or 'search' with nouns. This mix of conventions makes it hard to predict tool names.

Tool Count3/5

With 8 tools, the count is reasonable for a job/formation/company search domain. However, the presence of both generic and specific tools for the same operations suggests some redundancy, slightly bloating the surface.

Completeness3/5

The tool set covers search and retrieval for three entity types, which is adequate for a read-only API. However, there are no tools for creating, updating, or deleting items, which may limit some workflows. The generic tools partially cover the specific ones, but the surface feels incomplete for full CRUD operations.

Available Tools

8 tools
fetchFetch WeJob itemA
Read-only
Inspect

Fetch a public WeJob item by id. Supported id prefixes: job:, formation:, company:.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesResult id returned by search.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
jobsNo
logoNo
priceNo
titleYes
salaryNo
valuesNo
companyNo
contactNo
cultureNo
missionNo
profileNo
programNo
websiteNo
benefitsNo
durationNo
end_dateNo
industryNo
locationNo
languagesNo
locationsNo
work_modeNo
categoriesNo
formationsNo
founded_atNo
start_dateNo
tech_stackNo
descriptionNo
company_sizeNo
activity_rateNo
prerequisitesNo
contract_typesNo
formation_modeNo
business_sectorNo
experience_levelNo
responsibilitiesNo
expertise_domainsNo
learning_outcomesNo
certification_typeNo
nice_to_have_skillsNo
application_deadlineNo
required_hard_skillsNo
required_soft_skillsNo
Behavior4/5

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

Annotations already declare readOnlyHint and destructiveHint. The description adds that the tool fetches 'public' items and specifies valid id prefixes, providing behavioral context beyond the 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?

Two concise sentences: first stating purpose, second adding key constraint. No wasted words, efficiently front-loaded with essential information.

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 tool's simplicity (1 param, output schema present, annotations covering safety), the description covers fetching behavior and id format. Minor gaps like error behavior are acceptable for this low complexity.

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 description for 'id' is vague ('Result id returned by search'). The description adds meaningful constraints by listing supported prefixes, enhancing understanding 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?

Description clearly states it fetches a public WeJob item by id, with specific id prefixes (job:, formation:, company:) that distinguish it from sibling tools like wejob_get_company, etc.

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 when to use the tool (when you have an id with a known prefix) but does not explicitly contrast with the more specific sibling get tools or provide exclusion criteria.

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

wejob_get_companyGet WeJob companyA
Read-only
Inspect

Fetch one public WeJob company profile by public id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPublic company id.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
jobsNo
logoNo
priceNo
titleYes
salaryNo
valuesNo
companyNo
contactNo
cultureNo
missionNo
profileNo
programNo
websiteNo
benefitsNo
durationNo
end_dateNo
industryNo
locationNo
languagesNo
locationsNo
work_modeNo
categoriesNo
formationsNo
founded_atNo
start_dateNo
tech_stackNo
descriptionNo
company_sizeNo
activity_rateNo
prerequisitesNo
contract_typesNo
formation_modeNo
business_sectorNo
experience_levelNo
responsibilitiesNo
expertise_domainsNo
learning_outcomesNo
certification_typeNo
nice_to_have_skillsNo
application_deadlineNo
required_hard_skillsNo
required_soft_skillsNo
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering safety. The description adds that the profile is 'public', but no further behavioral traits 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?

A single, direct sentence with no wasted words. Front-loaded with the key action and resource.

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 simple tool with one parameter and an existing output schema, the description is adequate. Slightly more context (e.g., the structure of the returned profile) could be beneficial, but the output schema covers that.

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%, and the description adds no additional meaning beyond 'by public id'. The schema already explains the parameter sufficiently.

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 ('Fetch'), the resource ('public WeJob company profile'), and the identifier ('by public id'). It is specific and distinguishes from sibling tools like wejob_search_companies.

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?

No explicit guidance on when to use this tool versus alternatives like wejob_search_companies. It implies usage when a public id is known, but lacks explicit when-not or comparison to siblings.

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

wejob_get_formationGet WeJob formationA
Read-only
Inspect

Fetch one public active WeJob formation by public id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPublic formation id.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
jobsNo
logoNo
priceNo
titleYes
salaryNo
valuesNo
companyNo
contactNo
cultureNo
missionNo
profileNo
programNo
websiteNo
benefitsNo
durationNo
end_dateNo
industryNo
locationNo
languagesNo
locationsNo
work_modeNo
categoriesNo
formationsNo
founded_atNo
start_dateNo
tech_stackNo
descriptionNo
company_sizeNo
activity_rateNo
prerequisitesNo
contract_typesNo
formation_modeNo
business_sectorNo
experience_levelNo
responsibilitiesNo
expertise_domainsNo
learning_outcomesNo
certification_typeNo
nice_to_have_skillsNo
application_deadlineNo
required_hard_skillsNo
required_soft_skillsNo
Behavior4/5

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

Annotations already declare readOnlyHint=true; the description adds context that only 'public active' formations are returned, which is useful beyond annotations. No contradictions.

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?

Single sentence, no redundancy, conveys essential information efficiently.

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 tool's simplicity (1 required param, annotations present, output schema exists), the description fully covers what an agent needs to know. Rules allow output schema to handle return values.

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 single parameter 'id' described as 'Public formation id.' The description does not add new meaning beyond repeating 'public'.

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?

Description clearly states the verb 'fetch', the specific resource 'public active WeJob formation', and the identifier 'public id'. It distinguishes from sibling tools like wejob_search_formations which return lists.

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 fetching a single formation by id, but does not explicitly state when to use this tool versus siblings (e.g., search for listing, get_job for jobs). No when-not or alternative guidance is provided.

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

wejob_get_jobGet WeJob jobA
Read-only
Inspect

Fetch one public active WeJob job offer by public id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPublic job id.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
jobsNo
logoNo
priceNo
titleYes
salaryNo
valuesNo
companyNo
contactNo
cultureNo
missionNo
profileNo
programNo
websiteNo
benefitsNo
durationNo
end_dateNo
industryNo
locationNo
languagesNo
locationsNo
work_modeNo
categoriesNo
formationsNo
founded_atNo
start_dateNo
tech_stackNo
descriptionNo
company_sizeNo
activity_rateNo
prerequisitesNo
contract_typesNo
formation_modeNo
business_sectorNo
experience_levelNo
responsibilitiesNo
expertise_domainsNo
learning_outcomesNo
certification_typeNo
nice_to_have_skillsNo
application_deadlineNo
required_hard_skillsNo
required_soft_skillsNo
Behavior3/5

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

Annotations already provide readOnlyHint=true and destructiveHint=false, so the agent knows it's safe. The description adds the 'public active' constraint, which is useful behavioral context, but does not discuss error handling or other traits beyond that.

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 with no unnecessary words. Every part adds value, making it highly concise.

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 simple fetch tool with one parameter and an output schema, the description is complete. It specifies what is fetched (public active job offer) and by what identifier, leaving no critical gaps.

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% and the parameter 'id' is described in the schema as 'Public job id.' The description repeats this without adding new meaning, so it meets the baseline but does not enhance 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 tool fetches a single job offer by public id. It uses specific verb 'Fetch' and resource 'one public active WeJob job offer', distinguishing it from sibling tools like wejob_search_jobs which perform searches.

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 this tool is for retrieving a single job by id, but does not explicitly state when to use it over alternatives like wejob_search_jobs or fetch. No exclusions or when-not-to-use guidance is provided.

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

wejob_search_companiesSearch WeJob companiesA
Read-only
Inspect

Search public WeJob company profiles.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoOptional public result sort order.
limitNoMaximum number of results.
queryNoSearch query.
locationNoLocation filter.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds no behavioral context (e.g., pagination, data consistency, result availability), providing minimal extra value.

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?

A single, efficient sentence with no wasted words. It is appropriately front-loaded and immediately comprehensible.

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?

The tool has 4 optional parameters and an output schema, but the description is minimal. It does not explain how search results are filtered or sorted, though the output schema partially compensates. Adequate but could be more 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 each parameter documented. The description does not add further meaning beyond the schema, so baseline 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 'Search public WeJob company profiles' clearly states the verb (search) and resource (company profiles), directly distinguishing it from sibling tools for formations and jobs.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like wejob_search_formations or wejob_search_jobs, nor any context on prerequisites or exclusions.

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

wejob_search_formationsSearch WeJob formationsB
Read-only
Inspect

Search public active WeJob formations.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoOptional public result sort order.
limitNoMaximum number of results.
queryNoSearch query.
skillsNoComma-separated skills filter.
companyNoCompany filter.
locationNoLocation filter.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds 'public active' constraint, but lacks additional behavioral details like pagination or filtering behavior.

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?

Single sentence with zero fluff, front-loaded with verb and resource.

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

Completeness2/5

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

Despite high schema coverage and output schema, description lacks definition of 'formations' and proper usage context, leaving ambiguity for the agent.

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?

All 6 parameters have schema descriptions (100% coverage), so description adds no value beyond schema; baseline 3.

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?

Description clearly states verb 'Search' and resource 'formations', differentiating from sibling tools like wejob_search_companies and wejob_search_jobs.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives; no exclusions or context provided.

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

wejob_search_jobsSearch WeJob jobsA
Read-only
Inspect

Search public active WeJob job offers.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoOptional public result sort order.
limitNoMaximum number of results.
queryNoSearch query.
skillsNoComma-separated skills filter.
companyNoCompany filter.
locationNoLocation filter.
languagesNoComma-separated language filter, for example Anglais, English, en.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes
Behavior3/5

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

Annotations already declare the tool as read-only and non-destructive; the description adds the 'public active' filter, which provides useful behavioral context beyond annotations. However, it does not disclose potential pagination, rate limits, or result format.

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, concise sentence of five words with no redundancy or extraneous information. It is front-loaded and efficiently conveys the core purpose.

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 presence of a detailed input schema, output schema, and annotations, the description sufficiently covers the tool's purpose. It does not need to explain return values as the output schema exists. Minor gaps (e.g., no mention of pagination) do not detract significantly.

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%, so the schema already documents all 7 parameters with individual descriptions (e.g., sort enum options, limit constraints). The tool description itself adds no additional parameter meaning beyond the schema, meeting the baseline.

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 ('Search') and the resource ('public active WeJob job offers'). It implicitly distinguishes from sibling tools (e.g., wejob_get_job for single job, wejob_search_companies for companies) by specifying 'job offers', making the purpose unambiguous.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like wejob_get_job or the generic 'search' tool. It lacks explicit context on when not to use it or what the typical workflow might be.

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

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.