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.
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.
Tool Definition Quality
Average 3.8/5 across 8 of 8 tools scored.
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.
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.
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.
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 toolsfetchFetch WeJob itemARead-onlyInspect
Fetch a public WeJob item by id. Supported id prefixes: job:, formation:, company:.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Result id returned by search. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| jobs | No | |
| logo | No | |
| price | No | |
| title | Yes | |
| salary | No | |
| values | No | |
| company | No | |
| contact | No | |
| culture | No | |
| mission | No | |
| profile | No | |
| program | No | |
| website | No | |
| benefits | No | |
| duration | No | |
| end_date | No | |
| industry | No | |
| location | No | |
| languages | No | |
| locations | No | |
| work_mode | No | |
| categories | No | |
| formations | No | |
| founded_at | No | |
| start_date | No | |
| tech_stack | No | |
| description | No | |
| company_size | No | |
| activity_rate | No | |
| prerequisites | No | |
| contract_types | No | |
| formation_mode | No | |
| business_sector | No | |
| experience_level | No | |
| responsibilities | No | |
| expertise_domains | No | |
| learning_outcomes | No | |
| certification_type | No | |
| nice_to_have_skills | No | |
| application_deadline | No | |
| required_hard_skills | No | |
| required_soft_skills | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
searchSearch WeJobARead-onlyInspect
Search public WeJob jobs, formations, and companies. Returns ids usable with fetch.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Optional public result sort order. | |
| limit | No | Maximum number of results. | |
| query | Yes | Search query. |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
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 stating it returns IDs usable with fetch and that it searches public results. This provides behavioral context beyond annotations, though pagination or rate limits are not mentioned.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One single sentence that conveys purpose and result format with zero waste. Front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters, output schema, and annotations, the description is complete enough. It specifies the search scope and return format, though it could hint at the combined nature of results (mixing types) for extra clarity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline 3 applies. The description adds no specific details on parameters beyond what the schema provides (e.g., query, sort, limit are already described in the schema).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches public WeJob jobs, formations, and companies, and distinguishes itself from specific sibling tools like wejob_search_jobs by being a unified search. The verb 'search' and resources are specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for combined searches across jobs, formations, and companies, but it does not explicitly state when to use this general search over the specific siblings (e.g., for broader queries) or when not to use it.
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 companyARead-onlyInspect
Fetch one public WeJob company profile by public id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Public company id. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| jobs | No | |
| logo | No | |
| price | No | |
| title | Yes | |
| salary | No | |
| values | No | |
| company | No | |
| contact | No | |
| culture | No | |
| mission | No | |
| profile | No | |
| program | No | |
| website | No | |
| benefits | No | |
| duration | No | |
| end_date | No | |
| industry | No | |
| location | No | |
| languages | No | |
| locations | No | |
| work_mode | No | |
| categories | No | |
| formations | No | |
| founded_at | No | |
| start_date | No | |
| tech_stack | No | |
| description | No | |
| company_size | No | |
| activity_rate | No | |
| prerequisites | No | |
| contract_types | No | |
| formation_mode | No | |
| business_sector | No | |
| experience_level | No | |
| responsibilities | No | |
| expertise_domains | No | |
| learning_outcomes | No | |
| certification_type | No | |
| nice_to_have_skills | No | |
| application_deadline | No | |
| required_hard_skills | No | |
| required_soft_skills | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 formationARead-onlyInspect
Fetch one public active WeJob formation by public id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Public formation id. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| jobs | No | |
| logo | No | |
| price | No | |
| title | Yes | |
| salary | No | |
| values | No | |
| company | No | |
| contact | No | |
| culture | No | |
| mission | No | |
| profile | No | |
| program | No | |
| website | No | |
| benefits | No | |
| duration | No | |
| end_date | No | |
| industry | No | |
| location | No | |
| languages | No | |
| locations | No | |
| work_mode | No | |
| categories | No | |
| formations | No | |
| founded_at | No | |
| start_date | No | |
| tech_stack | No | |
| description | No | |
| company_size | No | |
| activity_rate | No | |
| prerequisites | No | |
| contract_types | No | |
| formation_mode | No | |
| business_sector | No | |
| experience_level | No | |
| responsibilities | No | |
| expertise_domains | No | |
| learning_outcomes | No | |
| certification_type | No | |
| nice_to_have_skills | No | |
| application_deadline | No | |
| required_hard_skills | No | |
| required_soft_skills | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 jobARead-onlyInspect
Fetch one public active WeJob job offer by public id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Public job id. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| jobs | No | |
| logo | No | |
| price | No | |
| title | Yes | |
| salary | No | |
| values | No | |
| company | No | |
| contact | No | |
| culture | No | |
| mission | No | |
| profile | No | |
| program | No | |
| website | No | |
| benefits | No | |
| duration | No | |
| end_date | No | |
| industry | No | |
| location | No | |
| languages | No | |
| locations | No | |
| work_mode | No | |
| categories | No | |
| formations | No | |
| founded_at | No | |
| start_date | No | |
| tech_stack | No | |
| description | No | |
| company_size | No | |
| activity_rate | No | |
| prerequisites | No | |
| contract_types | No | |
| formation_mode | No | |
| business_sector | No | |
| experience_level | No | |
| responsibilities | No | |
| expertise_domains | No | |
| learning_outcomes | No | |
| certification_type | No | |
| nice_to_have_skills | No | |
| application_deadline | No | |
| required_hard_skills | No | |
| required_soft_skills | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 companiesARead-onlyInspect
Search public WeJob company profiles.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Optional public result sort order. | |
| limit | No | Maximum number of results. | |
| query | No | Search query. | |
| location | No | Location filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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 formationsBRead-onlyInspect
Search public active WeJob formations.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Optional public result sort order. | |
| limit | No | Maximum number of results. | |
| query | No | Search query. | |
| skills | No | Comma-separated skills filter. | |
| company | No | Company filter. | |
| location | No | Location filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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 jobsARead-onlyInspect
Search public active WeJob job offers.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Optional public result sort order. | |
| limit | No | Maximum number of results. | |
| query | No | Search query. | |
| skills | No | Comma-separated skills filter. | |
| company | No | Company filter. | |
| location | No | Location filter. | |
| languages | No | Comma-separated language filter, for example Anglais, English, en. |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityCmaintenanceA read-only MCP server for accessing Mobilize public API data, including organizations, events, and enums.
- Flicense-qualityDmaintenanceMCP server to query French Open Data from data.gouv.fr
- Alicense-qualityCmaintenanceMCP server that exposes French public APIs (Data Inclusion, Légifrance, La Bonne Alternance) as tools for LLMs, enabling social, legal, and employment assistance.4MIT
- Flicense-qualityDmaintenanceMCP server for exploring French public open data via APIs like data.gouv.fr, geo.api.gouv.fr, INSEE Sirene, and Radio France.