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 · MCP 2025-11-25
- URL
TDQS
Scored across 5 tools
Each tool has a clearly distinct role: search_jobs finds jobs, get_job_details returns details for one job, get_application_link provides the apply URL, list_contract_types supports filtering, and get_skill_clusters gives an overview of in-demand skills. There is no overlapping functionality or risk of selecting the wrong tool.
All tool names follow a consistent verb_noun snake_case pattern: get_*, list_*, search_*. This makes the tool set predictable and easy to navigate.
Five tools is a compact, well-scoped set for a read-only job search server. Each tool earns its place and directly supports the job browsing and application workflow.
The core workflow is fully covered: search_jobs → get_job_details → get_application_link. Supporting tools for contract types and skill clusters round out the domain and enable effective filtering and discovery, with no obvious missing operations.
Available Tools
5 toolsget_application_linkGet Application LinkARead-onlyIdempotentInspect
Returns the direct application link for a public open job. Use this tool when the user wants to apply for a specific job after identifying it via search_jobs or get_job_details.
| Name | Required | Description | Default |
|---|---|---|---|
| jobId | No | Job ID from a previous search_jobs result. Accepts an integer or an integer represented as a string. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds meaningful scoping by stating the link is for a 'public open job' and clarifying the return value is a 'direct application link,' though it does not discuss edge cases such as expired links or non-open jobs.
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 sentences with no filler: the first front-loads the tool's output and scope, the second gives actionable usage context. Every sentence earns its place.
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 one-parameter read-only tool with comprehensive schema documentation and safety annotations, the description fully covers what the tool does, when to use it, and what it returns. No output schema is present, but saying it returns the 'direct application link' is sufficient for this tool's simplicity.
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 jobId parameter is already well-documented as coming from a previous search_jobs result and accepting an integer or integer-string. The description adds only a minor connection to get_job_details as another source, so the schema carries most of the parameter burden.
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 states a specific verb and resource: 'Returns the direct application link for a public open job.' It also distinguishes the tool from siblings by framing it as the application step after identification via search_jobs or get_job_details, making its role in the workflow clear.
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 explicitly says to use this tool 'when the user wants to apply for a specific job after identifying it via search_jobs or get_job_details.' This gives a clear trigger condition and names the preceding tools, effectively telling the agent when not to use it (before a job is identified).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_job_detailsGet Job DetailsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Job ID from a previous search_jobs result. Accepts an integer or an integer represented as a string. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint and idempotentHint annotations already establish the safety profile. The description adds useful context by noting the details are 'public' and the job must be 'open,' which is extra behavior information. However, it does not describe error behavior for invalid or non-open IDs, so there is a small transparency gap.
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 with no filler. The core behavior is front-loaded, and the usage context is given immediately after. Every word earns its place.
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 single-ID lookup tool with rich annotations and a well-documented parameter, the description covers what the tool does, when to use it, and what type of job it applies to. An agent has enough context 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.
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 the 'id' parameter well, including its source and accepted types. The description only says 'by ID,' adding no meaning beyond what the schema provides.
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 uses a specific verb ('Returns') and identifies the exact resource ('public details for a single open job by ID'). It clearly distinguishes itself from sibling tools like search_jobs, which lists jobs, and get_application_link, which serves a different purpose.
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?
Explicity states when to use: 'Use this tool after search_jobs when the user wants more information about one specific job.' This gives the agent clear routing guidance and implies it should not be used for browsing or searching.
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 ClustersARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint true. The description adds context about currency ('current') and scope ('public jobs'), enhancing understanding 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?
Two sentences front-loaded with purpose and usage guideline. No wasted words, efficient and clear.
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 no parameters and rich annotations, the description fully explains the tool's output and use case. No gaps remain.
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?
Tool has no parameters, so schema coverage is complete. Description does not need to add parameter details, meeting the baseline for zero-param tools.
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 returns current skill cluster data for public jobs on the nü people website. It distinguishes from sibling tools like search_jobs and get_job_details, which focus on different aspects.
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?
Explicit guidance: 'Use this tool when the user wants an overview of which skills or technologies are currently in demand.' No ambiguity about when to invoke.
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 TypesARead-onlyIdempotentInspect
Lists the available contract types, including IDs and names. Use this tool when the user wants to filter search_jobs by contract type.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and idempotentHint. The description adds that it returns IDs and names, but no other behavioral traits (e.g., ordering, caching) are disclosed, which is adequate for a simple list.
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 sentences, front-loaded with purpose and usage. Every sentence is valuable and 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 zero-parameter list tool, the description fully covers what it returns and when to use it. No output schema is needed.
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?
No parameters exist, so schema coverage is 100%. Baseline is 4 per guidelines; the description adds no parameter info because none is needed.
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 lists contract types with IDs and names. However, it does not explicitly distinguish from sibling tools, though the sibling tools are different in nature.
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?
Explicitly states when to use the tool: 'when the user wants to filter search_jobs by contract type'. No exclusion or alternatives are mentioned, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_jobsSearch JobsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query, such as a role, skill, technology, or job title, for example 'Senior C# Developer' or 'Kubernetes'. | |
| location | No | Optional city filter, for example 'Munich'. | |
| maxResults | No | Maximum number of results to return. Allowed range: 1 to 25. Default: 10. | |
| contractTypeId | No | Optional contract type ID. Use list_contract_types first if the user wants to filter by contract type. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and idempotentHint. The description adds that results are 'currently open' and 'public job summaries,' which is useful context 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?
The description is two sentences, front-loaded with the core purpose, and every word adds value. No redundant or filler content.
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 is a search with 4 parameters, annotations covering safety and idempotency, and no output schema, the description sufficiently covers purpose, usage, and return type ('list of public job summaries'). It omits pagination details but the schema handles maxResults.
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?
With 100% schema description coverage, the schema already explains all parameters. The description mirrors this without adding extra meaning or format details beyond what the schema provides. Baseline of 3 is appropriate.
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 'Searches currently open jobs on the nü people website,' specifying the verb (searches) and resource (open jobs). It distinguishes from siblings like get_job_details (single job) and list_contract_types (list types).
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 explicitly says when to use the tool ('when the user wants to find matching jobs by keyword, role, skill, location, or contract type') and advises using list_contract_types first for contract type filtering, providing clear guidance on alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Changed
get_job_details2 fields changed- added
Input schema / properties / id / defaultAdded value: +null - removed
Input schema / requiredRemoved value: -[ - "id" -]
1 tool update
- Changed
get_application_link2 fields changed- added
Input schema / properties / jobId / defaultAdded value: +null - removed
Input schema / requiredRemoved value: -[ - "jobId" -]
2 tool updates
- Changed
get_application_link2 fields changed- changed
Input schema / properties / jobId / descriptionPrevious value: -"Numeric job ID from a previous search_jobs result."New value: +"Job ID from a previous search_jobs result. Accepts an integer or an integer represented as a string." - removed
Input schema / properties / jobId / typeRemoved value: -"integer"
- Changed
get_job_details2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Numeric job ID from a previous search_jobs result."New value: +"Job ID from a previous search_jobs result. Accepts an integer or an integer represented as a string." - removed
Input schema / properties / id / typeRemoved value: -"integer"
5 tool updates
- First observed
get_application_link - First observed
get_job_details - First observed
get_skill_clusters - First observed
list_contract_types - First observed
search_jobs
Related MCP Connectors
Read-only MCP server for public WeJob jobs, formations, and companies.
GetJobzi MCP server for job search, application tracking, and career forecasting.
Search remote and onsite jobs through the public Corvi Careers MCP server.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server that scours job openings from public, ToS-clean sources (Greenhouse, Lever, Ashby, HN, RemoteOK, Adzuna, USAJobs) and provides tools for job search, company listings, and salary context.4MIT
- AlicenseNot gradedqualityAmaintenanceMCP server that exposes job search data from multiple boards, enabling clients to query and manage job listings via natural language.7MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that aggregates and deduplicates job listings from multiple public sources, ranks them against a user's resume, and exposes tools for searching, viewing details, explaining fit, and tracking applications.MIT
- AlicenseAqualityAmaintenanceMCP server for interacting with the CleanJobData Job API, enabling job searches, company lookups, location suggestions, and candidate profile prompts.5MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.