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.9/5 across 8 of 8 tools scored. Lowest: 3.2/5.

Server CoherenceA
Disambiguation3/5

The generic `fetch` and `search` tools overlap with the specific getters/searchers. For example, `fetch` with a job: prefix does the same as `wejob_get_job`, causing ambiguity. However, the specific tools are clearly named for distinct types, so some distinction exists.

Naming Consistency2/5

Naming is inconsistent: `fetch` and `search` have no prefix, while the other six tools use a `wejob_` prefix. This breaks a predictable pattern and could confuse an agent about whether to use the prefix or not.

Tool Count5/5

Eight tools is well-scoped for the domain of reading jobs, formations, and companies. It covers all necessary operations without being excessive or too sparse.

Completeness4/5

The tool surface covers get and search for each resource type, which is sufficient for a read-only public API. Minor gap: no combined operations, but generic `fetch` and `search` fill this. No missing CRUD since updates are not applicable.

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=true, so the description adds value by specifying the id prefix format and that the item is public. 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?

Two concise sentences, front-loaded with purpose, no unnecessary words.

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 output schema exists and parameter is fully covered, the description provides sufficient context including id prefix constraints. No significant gaps.

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% and parameter 'id' has a description ('Result id returned by search.'). The tool description adds context about supported id prefixes, which is not in the schema, enhancing semantic understanding.

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'), resource ('public WeJob item'), and scope ('by id'). It also lists supported id prefixes, distinguishing it from sibling tools that are type-specific.

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?

Description implies when to use this tool (when id has prefix like job:, formation:, company:) versus the specific sibling tools (e.g., wejob_get_job). However, it does not explicitly state that the specific tools are for known types, leaving the inference to the agent.

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, so the description's behavior disclosure adds little beyond stating it fetches a profile. It does not provide additional context like auth needs or error handling.

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 one short sentence that efficiently conveys the tool's purpose with no wasted words. It is front-loaded with the verb and resource.

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 (one required parameter, no nested objects, output schema present), the description is complete enough for the agent to understand the tool's functionality. No additional context is necessary.

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 input schema has 100% coverage with a description for the 'id' parameter. The description repeats 'by public id' but adds no new 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 states clearly the verb 'Fetch', the resource 'public WeJob company profile', and the input 'by public id'. It distinguishes from sibling tools like wejob_search_companies which search by criteria, and from other get tools for different entities.

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 (when you have a public company id) but does not explicitly mention when not to use or refer to alternatives like wejob_search_companies. Guidance is adequate but minimal.

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 and destructiveHint=false. The description adds value by specifying that only 'active' formations are returned, which is a behavioral trait 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?

The description is a single efficient sentence of 10 words, providing all essential information without any fluff or 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?

For a simple read tool with annotations and an output schema, the description covers the core purpose and input. It omits error cases or format details, but the existing structure compensates.

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 has 100% description coverage for the only parameter ('id' described as 'Public formation id.'). The description adds 'public active' context but does not significantly enhance the parameter 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 uses a specific verb ('Fetch') and identifies the exact resource ('one public active WeJob formation') and method ('by public id'). It clearly distinguishes from siblings like 'wejob_search_formations' for searching multiple formations.

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 lacks explicit guidance on when to use this tool versus alternatives (e.g., search vs. get). The sibling names provide context, but no direct exclusionary language.

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
Behavior4/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds context by stating the job is 'public active', explaining the scope of what is fetched. 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?

The description is a single sentence of only 9 words, conveying all necessary information with no redundancy or fluff.

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 (single parameter, output schema exists), the description is fully complete. It explains what the tool does with sufficient detail for an agent to select and invoke it 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?

Schema coverage is 100% with the parameter description 'Public job id.' The description does not add additional semantics beyond what the schema already provides, so the baseline score of 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 'Fetch', the resource 'one public active WeJob job offer', and the method 'by public id'. It effectively distinguishes from sibling tools like 'wejob_search_jobs' which is for searching rather than fetching a single job by ID.

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 specifies the required input (public id) and implies that this tool is for retrieving a single job when the ID is known. It does not explicitly mention alternatives, but the context is clear enough for an agent to decide when to use it over search tools.

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 companiesB
Read-only
Inspect

Search public WeJob company profiles.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results.
queryNoSearch query.
locationNoLocation filter.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes
Behavior2/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false; description adds no further behavioral details such as 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.

Conciseness4/5

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

Single sentence is concise and front-loaded, but could benefit from additional details without being verbose.

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?

With complete schema and output schema present, description minimally suffices but lacks details on pagination, default behavior, or result formatting.

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 covers all three parameters with descriptions (100% coverage), so description adds no additional meaning beyond what schema already provides.

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 uses specific verb 'Search' and resource 'public WeJob company profiles', clearly distinguishing from sibling tools like wejob_search_jobs and wejob_search_formations.

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 'search' or other wejob_search_* tools; 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_formationsSearch WeJob formationsA
Read-only
Inspect

Search public active WeJob formations.

ParametersJSON Schema
NameRequiredDescriptionDefault
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. The description adds 'public active,' clarifying the scope of results. This provides some additional context but does not deeply describe behavior beyond what annotations cover.

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

Conciseness4/5

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

The description is a single, clear sentence with no wasted words. It is appropriately front-loaded, though it could be slightly expanded with usage hints.

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, presence of an output schema, and clear annotations, the description is mostly complete. It could mention that it returns formations, but the name and common sense fill the gap.

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 all parameters having descriptions. The description does not add extra meaning or interaction details beyond the schema, so it meets the baseline of 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?

The description clearly states 'Search public active WeJob formations,' using a specific verb and resource. It adds context beyond the tool name by specifying 'public active,' and distinguishes from sibling tools like wejob_search_jobs and 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 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. No mention of when not to use it, or comparisons to similar sibling tools like wejob_search_jobs or fetch.

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 jobsB
Read-only
Inspect

Search public active WeJob job offers.

ParametersJSON Schema
NameRequiredDescriptionDefault
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 readOnlyHint=True and destructiveHint=False. Description adds 'public active' context but no further details about pagination, result ordering, or rate limits. Acceptable but not enhanced.

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

Conciseness4/5

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

Single sentence, no waste. Could be slightly more informative but highly concise.

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?

With output schema present and all parameters documented, the description is adequate but sparse. Lacks explanation of 'public active' criteria and usage nuance for a multi-filter search tool.

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 clear descriptions for all 6 parameters. Description adds no additional parameter-specific 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?

Description clearly states 'Search public active WeJob job offers', specifying action and resource. It distinguishes from sibling tools like wejob_search_companies and wejob_get_job by focusing on job offers and adding 'public active' constraints.

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 vs alternatives. Does not mention when not to use it or compare with other search tools like wejob_search_companies or wejob_search_formations.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.