Skip to main content
Glama

nü people Job Server

Server Details

Public MCP server for discovering open jobs. Search, filter, and get application links.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

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

MCP client
Glama
MCP server

Full call logging

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

Tool access control

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

Managed credentials

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

Usage analytics

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

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, distinct purpose: searching jobs, getting job details, getting application links, listing contract types, and retrieving skill clusters. No two tools overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using snake_case: get_application_link, get_job_details, get_skill_clusters, list_contract_types, search_jobs. Pattern is uniform and predictable.

Tool Count5/5

With 5 tools, the server is well-scoped for a job search domain. It provides essential operations (search, details, application link) and auxiliary metadata (contract types, skill clusters) without being bloated or insufficient.

Completeness4/5

The tool set covers the main workflow (search → details → apply) plus metadata for filtering. A minor gap is the lack of a tool to list all jobs or get aggregate counts, but search_jobs is flexible enough to handle broad queries.

Available Tools

5 tools
get_job_detailsGet Job DetailsA
Read-onlyIdempotent
Inspect

Returns public details for a single open job by ID. Use this tool after search_jobs when the user wants more information about one specific job.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesNumeric job ID from a previous search_jobs result.
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the description adds that the details are 'public' and for an 'open' job. This provides some additional context without contradicting 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 concise, two sentences, with no unnecessary words. It efficiently conveys the purpose and usage.

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 what the tool does, when to use it, and where the input comes from. It lacks specifics on the return value content, but given the tool is simple and no output schema exists, it is mostly 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 description coverage is 100%, so the parameter is already well-documented. The tool description does not add extra parameter information beyond what the schema 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?

The description clearly states the tool returns public details for a single open job by ID. It differentiates from sibling tools like search_jobs by specifying it is used after search_jobs for one specific job.

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

Usage Guidelines4/5

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

The description explicitly says to use this tool after search_jobs when the user wants more information about one specific job, providing clear context for use. It does not list when not to use it or alternative tools, but the guidance is sufficient.

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

get_skill_clustersGet Skill ClustersA
Read-onlyIdempotent
Inspect

Returns the current skill cluster data for public jobs on the nü people website. Use this tool when the user wants an overview of which skills or technologies are currently in demand.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already provide readOnlyHint and idempotentHint, indicating a safe read operation. The description adds that the data is 'current' and 'for public jobs', which is useful but minimal. It does not disclose any additional behavioral traits beyond what annotations already convey.

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 concise sentences. The first sentence states the core function, and the second provides usage guidance. No wasted words.

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 that there are no parameters and no output schema, the description clearly states what the tool returns (skill cluster data) and when to use it. It could briefly mention the expected format, but it is otherwise sufficient for a simple 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?

The input schema has no parameters, so schema_description_coverage is 100%. The description does not need to add parameter meaning. 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 uses a specific verb ('returns') and identifies the resource ('current skill cluster data for public jobs on the nü people website'). It also explains the tool's purpose ('overview of which skills or technologies are currently in demand'), distinguishing it from sibling tools like get_job_details or 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 Guidelines4/5

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

The description explicitly states when to use the tool: when the user wants an overview of in-demand skills or technologies. It does not list alternatives or exclusions, but the context of sibling tools makes it clear that other tools serve different purposes.

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

list_contract_typesList Contract TypesA
Read-onlyIdempotent
Inspect

Lists the available contract types, including IDs and names. Use this tool when the user wants to filter search_jobs by contract type.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the minimal description that adds output specifics (IDs and names) is appropriate, though it does not detail return behavior or pagination.

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: first defines purpose, second gives usage guideline. No wasted words, front-loaded with actionable info.

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?

A simple list tool with no output schema, but description specifies output fields and usage context. Could mention order or completeness but is adequate.

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?

No parameters exist; schema coverage is 100%. The description adds no parameter info but is not needed, earning baseline score.

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 tool lists available contract types with IDs and names, distinguishing it from sibling tools like search_jobs or get_job_details.

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

Usage Guidelines5/5

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

Explicitly says to use this tool when the user wants to filter search_jobs by contract type, providing clear context and alternative direction.

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

search_jobsSearch JobsA
Read-onlyIdempotent
Inspect

Searches currently open jobs on the nü people website. Use this tool when the user wants to find matching jobs by keyword, role, skill, location, or contract type. Returns a list of public job summaries.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query, such as a role, skill, technology, or job title, for example 'Senior C# Developer' or 'Kubernetes'.
locationNoOptional city filter, for example 'Munich'.
maxResultsNoMaximum number of results to return. Allowed range: 1 to 25. Default: 10.
contractTypeIdNoOptional contract type ID. Use list_contract_types first if the user wants to filter by contract type.
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the description adds value by specifying that it returns a list of public job summaries. No contradictions. Minor gap: no mention of pagination or rate limits, but overall good.

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: the first states the core purpose, the second provides usage guidance. No filler; every word serves a purpose. Perfectly structured for quick understanding.

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 tool has no output schema, but the description says it returns job summaries, which is sufficient. It also mentions the specific website. With annotations covering safety, it's fairly complete, though could mention the return format or ordering.

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 description adds little beyond the schema. The description mentions 'by keyword, role, skill, location, or contract type' which aligns with parameters but does not add new information. Baseline 3 applied.

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 that the tool searches currently open jobs on the nü people website, specifying both the verb and resource. It also distinguishes itself from sibling tools like get_job_details and list_contract_types.

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

Usage Guidelines5/5

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

The description explicitly says when to use the tool (when user wants to find matching jobs by keyword, role, etc.) and provides an alternative: use list_contract_types first if filtering by contract type. This gives clear guidance.

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.

Resources