Skip to main content
Glama

WaaS MCP

MCP server for Work at a Startup — YC's job board (WaaS). Search jobs, read listings, inspect what each application needs, and submit with dry-run safety by default.

waas.com is a parked domain. This targets workatastartup.com.

Quick start

Requirements: Node.js 20+, a Work at a Startup / YC account (for applying).

git clone https://github.com/Thespaceblade/waas-mcp.git
cd waas-mcp
./scripts/install.sh

install.sh installs dependencies, builds, downloads the Playwright browser, and prints an MCP config snippet for your machine.

Sign in once (opens a browser window):

npm run login

Reload MCP in Cursor (or restart Claude Desktop), then ask your assistant:

Search WaaS for remote engineering jobs and inspect one at random.

Related MCP server: job-search-mcp

Cursor / Claude MCP config

Merge into ~/.cursor/mcp.json (or Claude Desktop config). Use the absolute path where you cloned the repo:

{
  "mcpServers": {
    "waas": {
      "command": "node",
      "args": ["/path/to/waas-mcp/dist/index.js"]
    }
  }
}

See mcp.json.example. Session is stored at ~/.waas-mcp/storage-state.json after npm run login.

Claude Desktop (.mcpb)

One-click bundle (build from a clone):

npm run pack:mcpb

Install waas-mcp.mcpb via Claude Desktop → Settings → Extensions. Then run npm run login from the extension folder once (see Claude's extension install path).

What it does

Step

Tool

Check weekly cap

waas_application_quota — 10 in-app applications/week (Monday reset); also on waas_search / waas_inspect_application as weeklyQuota

waas_search

waas_search — role, remote, visa, keywords, etc. (job_type tightened client-side when WaaS returns mixed results)

Read job

waas_get_job

Read company

waas_get_company

Inspect apply form

waas_inspect_applicationapplicationType, fields[], external links

Submit

waas_submit_application — answer map, dry_run=true default

Track

waas_list_applied

Check login

waas_auth_status

Application types (waas_inspect_application)

Type

Meaning

custom_questions

Resume URL, multiple choice, text questions — includes required message field (50+ chars)

in_app_message

Default "message the founder" textarea

external

Greenhouse, email, etc. — won't auto-submit

already_applied

Skip

weekly_limit_reached

10/week cap hit — won't auto-submit (applyBlocked: true)

needs_login

Run npm run login

Weekly application cap

Work at a Startup limits 10 in-app applications per calendar week (week starts Monday). When the cap is reached, the Apply modal is blocked or shows a limit message.

The MCP tracks usage by counting your candidate messages in GET /api/conversations since Monday (re-applies to existing company threads count separately). It also merges ~/.waas-mcp/applied.json when a recent MCP submit is not yet in the API. Check countNote on quota responses. WaaS's server-side cap may still differ slightly — keep a 1–2 application buffer.

Example workflow

waas_application_quota {}
waas_search { "role": "eng", "remote": true, "limit": 10 }
waas_inspect_application { "job_id": "99221" }
waas_submit_application {
  "job_id": "99221",
  "answers": { "question_1981": "Your drafted answer..." },
  "dry_run": true
}

Only set dry_run: false after you explicitly approve.

Manual install

If you prefer not to use install.sh:

npm install          # runs build + Playwright chromium via lifecycle scripts
npm run login

Upgrade

cd waas-mcp && git pull && npm install

Reload MCP in Cursor after updating.

Claude Desktop (.mcpb)

Claude does not auto-update installed extensions. After a new release:

  1. Download waas-mcp.mcpb from Releases

  2. Claude → Settings → Extensions → remove old WaaS extension

  3. Install the new .mcpb (drag & drop or file picker)

  4. Quit Claude completely (Cmd+Q) and reopen — MCP servers only restart on app launch

Or point Claude at a git clone via claude_desktop_config.json (same snippet as Cursor) to pick up git pull + npm run build without reinstalling the bundle.

Command

Purpose

npm start

Run MCP server (stdio)

npm run login

One-time YC / WaaS sign-in

npm test

Unit tests

npm run test:live

Live smoke test against workatastartup.com

npm run pack:mcpb

Build Claude Desktop .mcpb bundle

Credits

Parsing adapted from workatastartup-mcp (MIT).

License

MIT — see LICENSE.

Available Tools

8 tools
waas_application_quotaWeekly application quotaA

Check Work at a Startup weekly in-app application cap (10/week). Counts candidate messages since Monday from /api/conversations, merged with ~/.waas-mcp/applied.json for recent MCP submits.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses that this is a read-only check via 'Check' and 'Counts', describes the count window ('since Monday'), and names the two data sources plus how they are combined. It omits minor details like timezone handling or output format, but the core behavior is transparent.

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 with no filler. The first sentence states the purpose and threshold, while the second provides the necessary data-source detail. The structure is front-loaded and every clause earns its place.

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 zero-parameter, read-only quota tool, the description covers what is being counted, the time window, the threshold, and the source files. It does not describe the return format, which would be helpful, but the absence is acceptable given no output schema is declared.

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?

The tool has zero parameters and the schema coverage is effectively 100%. The description explains the meaningful inputs conceptually by naming the data sources and merge behavior, which is all that is needed here.

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 a specific check operation ('Check Work at a Startup weekly in-app application cap') and gives a concrete threshold (10/week). This distinguishes it from the sibling tools that handle authentication, search, submission, and listing.

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 usage context is clear: an agent should call this when it needs to know the current weekly application quota or remaining capacity. It does not explicitly name alternatives or exclusion cases, but with zero parameters and this narrow purpose, the intent is easy to infer.

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

waas_auth_statusCheck login sessionB

Check Work at a Startup login session (~/.waas-mcp/storage-state.json or cookie.txt).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

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

Annotations are absent, so the description carries the full burden. It discloses the files inspected (~/.waas-mcp/storage-state.json or cookie.txt), which adds some context, but it does not state whether the tool is read-only, what output it produces, or how it indicates success/failure. For a status check tool, this is notably incomplete.

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?

A single concise sentence front-loads the action and resource, with the file path detail in a parenthetical. No wasted words; every element earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description should explain what the agent can expect from the call or when to use it, but it does not. The tool is simple, yet leaving out the return/status semantics and usage context makes it under-specified for an agent deciding how to act on the result.

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?

The tool has zero parameters, so the schema already covers everything. Baseline 4 for zero params is appropriate; the description adds no parameter information, but none is needed.

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?

States a specific verb ('Check') and resource ('Work at a Startup login session'), and even names the underlying storage files. This clearly distinguishes it from sibling tools like waas_search or waas_get_job, which perform entirely different actions.

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 call this tool versus alternatives. It does not state that this should be used as a prerequisite before other waas tools, nor does it mention any conditions for usage. The agent is left to infer context from the name.

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

waas_get_companyGet company profileB

Fetch company profile, founders, and open roles.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesCompany slug or /companies/acme URL.

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are present, so the description carries the full burden. It discloses a read-only intent with 'Fetch' and lists the returned data categories, which is useful. However, it does not mention authentication needs, error behavior, or response structure, leaving some transparency gaps.

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 front-loaded sentence with no filler. It communicates the action, resource, and key returned data efficiently.

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?

For a simple one-parameter read tool, the description covers the core purpose and returned data. However, there is no output schema and no mention of auth or error behavior, so the description is minimally viable but not fully 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 coverage is 100%, with the slug parameter clearly described as 'Company slug or /companies/acme URL.' The description does not repeat or extend parameter details, but the schema already provides sufficient meaning, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Fetch') and resource ('company profile'), and adds useful scope ('founders, and open roles'). It implies differentiation from siblings like waas_get_job and waas_search by targeting a specific entity, though it does not explicitly name alternatives.

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 is provided about when to use this tool versus siblings such as waas_get_job or waas_search. There are no exclusions, prerequisites, or contextual cues beyond the tool name and resource, so the agent must infer usage.

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

waas_get_jobGet job postingA

Fetch full job posting (description, comp, visa, skills). Works logged out for public pages. WORKFLOW (required):

  1. waas_application_quota (or waas_search weeklyQuota) — check remaining in-app applications this week (cap is 10).

  2. waas_search with structured filters (or waas_get_job from a URL the user provides).

  3. waas_get_job + waas_get_company for full context.

  4. waas_inspect_application — returns applicationType, fields[], weeklyQuota, applyBlocked.

  5. If applicationType=weekly_limit_reached or applyBlocked=true → stop; do NOT submit.

  6. If applicationType=external → report link/email to user; do NOT auto-submit.

  7. If applicationType=needs_login → tell user to run npm run login.

  8. Draft answers for every required field in fields[].

  9. waas_submit_application with dry_run=true — show the user all answers.

  10. Only after explicit approval → dry_run=false. Never auto-submit. Skip already_applied jobs.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesNumeric id or /jobs/123 URL.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are present, so the description carries the behavioral burden. It discloses that the tool works logged out for public pages and includes a workflow with safeguards like "Never auto-submit" and "Skip already_applied jobs." However, it does not explicitly state that fetching is read-only, describe error behavior, or clarify what happens for non-public jobs.

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

Conciseness3/5

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

The summary line is front-loaded and useful, and the workflow is numbered for readability. However, the description embeds a lengthy 10-step application workflow that concerns several sibling tools, not just waas_get_job. This is structured but not concise, and some steps go well beyond the tool's own behavior.

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 one-parameter fetch tool with no output schema, the description provides solid context: it names core returned fields (description, comp, visa, skills), explains logged-out access, and gives integration order relative to siblings. It could add return-format or error details, but the essential operational context is present.

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 sole parameter job_id is already documented in the schema as "Numeric id or /jobs/123 URL," giving 100% schema description coverage. The tool description adds no additional parameter-level meaning beyond what the schema provides, so the 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 opens with a specific verb and resource: "Fetch full job posting (description, comp, visa, skills)." This clearly distinguishes waas_get_job from siblings like waas_search or waas_list_applied. The title 'Get job posting' reinforces the same purpose without ambiguity.

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 required workflow explicitly positions this tool after waas_search or a user-provided URL and before waas_get_company and waas_inspect_application. It also notes "Works logged out for public pages," giving useful context about when authentication is not needed. It stops short of explicitly listing when-not-to-use alternatives, but the workflow is strong guidance.

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

waas_inspect_applicationInspect application formA

Inspect how to apply: returns applicationType, required fields (message, resume URL, multiple choice, etc.), external apply hints, and whether you're already applied. WORKFLOW (required):

  1. waas_application_quota (or waas_search weeklyQuota) — check remaining in-app applications this week (cap is 10).

  2. waas_search with structured filters (or waas_get_job from a URL the user provides).

  3. waas_get_job + waas_get_company for full context.

  4. waas_inspect_application — returns applicationType, fields[], weeklyQuota, applyBlocked.

  5. If applicationType=weekly_limit_reached or applyBlocked=true → stop; do NOT submit.

  6. If applicationType=external → report link/email to user; do NOT auto-submit.

  7. If applicationType=needs_login → tell user to run npm run login.

  8. Draft answers for every required field in fields[].

  9. waas_submit_application with dry_run=true — show the user all answers.

  10. Only after explicit approval → dry_run=false. Never auto-submit. Skip already_applied jobs.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesNumeric id or /jobs/123 URL.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries full behavioral disclosure. It explains exactly what the tool returns, what applicationType values mean, how applyBlocked should gate submission, and that external applications must be reported rather than auto-submitted.

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 front-loaded with what the tool returns, followed by a clearly numbered workflow. Though long, every line adds operational value: order, alternatives, stop conditions, and approval gates. The structure makes it easy to follow.

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 role in a multi-step application flow, the description covers prerequisites, ordering, conditional branches, auth handling, and safety requirements. It names return fields and applicationType variants even without an output schema, so an agent has enough context to 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%, and the schema already documents job_id as either a numeric id or a /jobs/123 URL. The description does not add parameter-level detail beyond that, so the baseline 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 states a precise verb and resource: inspecting an application form to return applicationType, required fields, external apply hints, and applied status. This clearly differentiates it from sibling tools like waas_get_job, waas_search, and waas_submit_application.

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 required WORKFLOW explicitly orders this tool after quota checks and job/company retrieval, names the sibling alternatives at each step, and gives clear stop conditions for external, needs_login, and weekly_limit_reached cases. It also instructs to skip already_applied jobs and never auto-submit.

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

waas_list_appliedList applied jobsA

List jobs you've submitted via this MCP (local tracker at ~/.waas-mcp/applied.json).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full behavioral burden. It discloses that the data comes from a local tracker file (~/.waas-mcp/applied.json), implying a local read operation with no network dependency, and 'List' signals non-destructive behavior. It does not mention ordering or return format, but the core behavioral context is covered.

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, well-structured sentence that front-loads the core action and resource, then adds the useful local tracker path. Every word contributes value with no redundancy or filler.

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 zero-parameter, local-only list operation, the description is largely complete: it states what is listed, the scope, and the data source. The only minor gap is the absence of return-shape details, since no output schema exists, but for a simple list operation this is not a significant obstacle.

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?

The tool has zero parameters and 100% schema description coverage, so there are no parameter semantics for the description to clarify. Per the baseline for zero-parameter tools, the description appropriately has nothing to add beyond confirming the scope.

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 ('List') and a clear resource ('jobs you've submitted via this MCP'), and it distinguishes this tool from siblings like waas_search and waas_get_job by scoping to the user's own submitted applications. The local tracker path further disambiguates its exact domain.

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 clearly conveys that this tool is for listing jobs submitted through this MCP and stored locally, which implies it is the right choice when tracking one's own applications rather than searching all jobs. It lacks an explicit 'use X instead when...' statement, but the context is strong enough for an agent to decide correctly.

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

waas_submit_applicationSubmit applicationA

Submit application answers. Pass a map of field names → values (see waas_inspect_application fields). Default dry_run=true. WORKFLOW (required):

  1. waas_application_quota (or waas_search weeklyQuota) — check remaining in-app applications this week (cap is 10).

  2. waas_search with structured filters (or waas_get_job from a URL the user provides).

  3. waas_get_job + waas_get_company for full context.

  4. waas_inspect_application — returns applicationType, fields[], weeklyQuota, applyBlocked.

  5. If applicationType=weekly_limit_reached or applyBlocked=true → stop; do NOT submit.

  6. If applicationType=external → report link/email to user; do NOT auto-submit.

  7. If applicationType=needs_login → tell user to run npm run login.

  8. Draft answers for every required field in fields[].

  9. waas_submit_application with dry_run=true — show the user all answers.

  10. Only after explicit approval → dry_run=false. Never auto-submit. Skip already_applied jobs.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYes
answersYesField answers, e.g. { "message": "...", "question_1981": "...", "question_2839": "https://..." }
dry_runNoDefault true — preview only.

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full transparency burden, and it more than meets it: dry_run defaults to true, auto-submission is forbidden, explicit approval is required, weekly quota and applyBlocked are checked, and external/needs_login cases are handled. This is unusually clear about side effects and guardrails.

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?

Although long, the description is tightly structured: the one-line purpose is front-loaded, and the numbered workflow is dense with actionable instructions. The repetition of 'never auto-submit' and the approval requirement reinforces a critical safety rule rather than wasting space.

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 is highly complete for pre-submission behavior, covering quota checks, context gathering, inspection, dry-run approval, and blocked cases. It does not describe the expected result or error behavior after a real dry_run=false submission, which would be useful given there is no output schema.

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?

The description adds meaning to 'answers' by pointing to waas_inspect_application fields and reinforces the dry_run default. However, job_id is only present in the schema and inferred from the workflow steps rather than explicitly described, leaving a small semantic gap.

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 submits application answers and distinguishes it from sibling tools by referencing waas_inspect_application fields and the submission workflow. It also clarifies what this tool is not for: external applications, blocked/limit-reached applications, and login-required applications.

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 provides a mandatory 10-step workflow that names the exact sibling tools to call before submission and specifies conditions that should stop the agent from submitting. It explicitly states when not to submit and requires explicit user approval before dry_run=false.

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

TDQS

A4/5.0
Disambiguation5/5

Each tool maps to a distinct step in the job-search-and-apply workflow: quota, auth, search, job details, company details, application inspection, submission, and applied history. There is no meaningful overlap between tools, so an agent can reliably choose the right one for each stage.

Naming Consistency4/5

All tools share a clear waas_ prefix and mostly follow a predictable action_noun pattern like waas_get_job, waas_submit_application, and waas_list_applied. Minor deviations like waas_auth_status and waas_application_quota are noun_noun, and waas_search is a lone verb, but the overall pattern remains readable and consistent.

Tool Count5/5

Eight tools is well-scoped for this domain, covering the essential stages of searching, inspecting, and applying to jobs without unnecessary duplication. Each tool earns its place and the count feels appropriately focused.

Completeness5/5

The tool surface covers the full application lifecycle: auth status, quota checking, search, job and company retrieval, application inspection, dry-run submission, and local applied-history tracking. There are no obvious dead ends; the workflow from discovery through submission is fully supported.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables users to search for jobs, prefill applications using AI, and automate submissions across major platforms like Lever and Ashby directly from Claude or Cursor. It provides a full suite of tools for managing job queues, profile data, and resumes within a chat interface.
    35
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables running a job search with Claude Code: parses CV, discovers roles, fetches exact application fields, drafts non-trivial applications (positioning, not autofill), and renders an offline dashboard for review.
  • A
    license
    A
    quality
    B
    maintenance
    Enables reading Y Combinator's Work at a Startup job postings and company details through a logged-in session, providing structured data to AI assistants.
    2
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Thespaceblade/waas-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server