Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WEB3_CAREER_API_TOKENYesYour web3.career API token (request at web3.career/web3-jobs-api)

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
query_jobsA
Query Web3 job listings from the web3.career API with optional filters.

Returns a Markdown-formatted list of jobs, including Job ID, Title, Company, Location,
Remote status, Published At date, Apply URL, and Description (always included).

Parameters:
    remote (Optional[bool]): Filter for remote jobs. Set to True for remote-only,
        False for non-remote, or None for no filter. Defaults to None.
    country (Optional[str]): Filter by country (e.g., "United States", "Canada").
        Case-insensitive, spaces are converted to hyphens (e.g., "united-states").
        Defaults to None (no country filter).
    tag (Optional[str]): Filter by job tag (e.g., "react", "blockchain").
        Case-insensitive. Defaults to None (no tag filter).
    limit (Optional[int]): Maximum number of jobs to return. Must be between 1 and 100.
        Defaults to 50. Raises ValueError if limit exceeds 100.
    ctx (Context): MCP context for logging and internal use. Automatically provided
        by the MCP framework. Defaults to None.

Returns:
    str: A Markdown string containing a list of job listings with the specified fields.

Notes:
    - Descriptions are always included (show_description is hardcoded to True),
      truncated to 100 characters, and have HTML tags removed.
    - Published At is derived from the 'date_epoch' field, formatted as YYYY-MM-DD.
    - Apply URL is included as a clickable Markdown link for each job.
    - Source is credited to web3.career per API terms.

Prompts

Interactive templates invoked by user choice

NameDescription
search_jobs_promptGenerate a prompt for searching Web3 jobs based on role and optional location.

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no possibility of ambiguity or confusion between tools. The single tool has a clear, distinct purpose that cannot be mistaken for any other functionality within this server.

Naming Consistency5/5

The single tool follows a consistent verb_noun naming pattern (query_jobs). With only one tool, naming consistency is inherently perfect as there are no other tools to compare against or create inconsistencies with.

Tool Count2/5

A single tool is too few for a server focused on Web3 job listings. While the query_jobs tool provides comprehensive querying functionality, there are obvious gaps in the surface area that would require additional tools to cover a complete job search domain.

Completeness2/5

The server is severely incomplete for Web3 job operations. While query_jobs provides robust filtering capabilities, there are no tools for viewing individual job details, applying to jobs, saving favorites, or managing user profiles. The single tool represents only a fraction of what would be expected in a job search domain.

Maintenance

ActivityInactive
ResponsivenessNo issues