Skip to main content
Glama
cben0ist

Ascend MCP Server

by cben0ist

Ascend MCP Server

Connect Claude (Desktop, Code, or agents) to your Ascend job search data.

What it does

Gives Claude read-only access to:

  • Job applications — list, filter by status, get full details with AI analysis

  • Resume — your base resume in JSON Resume format

  • Dashboard stats — totals, interview counts, match scores

  • Analytics — trends and period-over-period comparisons

Related MCP server: claudex-strava-mcp

Setup

1. Get your API key

  1. Open Ascend → Settings → Claude AI Integration

  2. Click Generate Key and copy the key (shown once)

2. Install dependencies

cd mcp
npm install

3. Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ascend": {
      "command": "node",
      "args": ["/absolute/path/to/ascend/mcp/src/index.js"],
      "env": {
        "ASCEND_API_URL": "https://ascend.workingensemble.ca/api/mcp",
        "ASCEND_API_KEY": "your_key_here"
      }
    }
  }
}

4. Configure Claude Code

claude mcp add ascend \
  -e ASCEND_API_URL=https://ascend.workingensemble.ca/api/mcp \
  -e ASCEND_API_KEY=your_key_here \
  -- node /absolute/path/to/ascend/mcp/src/index.js

Local development

ASCEND_API_URL=http://localhost:4000/api/mcp \
ASCEND_API_KEY=your_key_here \
node mcp/src/index.js

Test with MCP Inspector

cd mcp
ASCEND_API_URL=http://localhost:4000/api/mcp ASCEND_API_KEY=your_key \
  npx @modelcontextprotocol/inspector node src/index.js

Available Tools

Tool

Description

list_applications

List applications with optional status filter

get_application

Full details for one application including AI analysis

get_resume

Your base resume in JSON Resume format

get_dashboard_stats

Total applications, interviews, offers, avg match score

get_analytics_overview

Trends and analytics for a date range

Example prompts

  • "How many job applications do I have in total?"

  • "Show me applications where I'm currently interviewing"

  • "What's my average job match score?"

  • "Summarize my resume"

  • "How has my application rate changed over the last month?"

Available Tools

5 tools
get_analytics_overviewB

Get analytics overview: application trends, interview rates, offer rates, and period-over-period comparisons.

ParametersJSON Schema
NameRequiredDescriptionDefault
endDateNoEnd date ISO8601 (default: today)
startDateNoStart date ISO8601 (default: 30 days ago)

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions the metrics returned but doesn't disclose behavior like default date ranges (though the schema covers defaults), whether data is read-only, or any rate limits. The description adds some value by listing metrics but doesn't cover behavioral traits like aggregation granularity or data freshness.

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

Conciseness4/5

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

The description is a single sentence that front-loads the main purpose and lists key metrics. It's concise and structured well, though it could be slightly more explicit about usage context.

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 read-only analytics tool with two optional parameters and no output schema, the description is adequate but not complete. It doesn't explain what 'period-over-period comparisons' means in terms of output format, nor does it clarify how this differs from get_dashboard_stats. The lack of annotations and output schema means the description should carry more weight.

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 schema already documents both parameters (startDate, endDate) with defaults. The description doesn't add meaning beyond what the schema provides, but the baseline of 3 applies since the schema does the heavy lifting.

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 tool's purpose: retrieving an analytics overview with specific metrics (application trends, interview rates, offer rates, period-over-period comparisons). The verb 'get' and resource 'analytics overview' are specific. It doesn't explicitly differentiate from siblings like get_dashboard_stats, but the metrics listed make it distinguishable.

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

Usage Guidelines3/5

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

The description implies usage for analytics queries but doesn't explicitly state when to use this tool versus get_dashboard_stats or list_applications. The context is clear enough for an agent to infer it's for high-level analytics, but no explicit exclusions or alternatives are mentioned.

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

get_applicationA

Get full details for a specific job application including AI analysis, tailored resume, and metadata.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesApplication ID (UUID)

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It communicates a read-style 'Get' operation and the returned content categories, but does not state whether AI analysis is precomputed or generated on demand, nor any permissions or error behavior. This is acceptable but not richly 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?

One sentence, front-loaded with the main action and resource, then specific content categories. There is no filler or redundancy; every phrase adds information.

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 one-parameter get-by-ID tool with no output schema, the description covers the main response areas (AI analysis, tailored resume, metadata). It is sufficient for an agent to know what it will get back, though it leaves minor ambiguity about exact response structure or error cases.

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% and the single 'id' parameter is already documented as an Application ID (UUID). The description only reinforces the 'specific application' notion, adding no new format or syntax detail. Baseline 3 is appropriate because the schema handles parameter meaning.

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 and resource ('Get full details for a specific job application') and enumerates what is included: AI analysis, tailored resume, and metadata. This clearly distinguishes it from the sibling list_applications (list vs. single record) and get_resume (single component vs. full details).

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 conveys clear usage context: call when you need details about one specific application by ID, rather than a list or dashboard stats. It does not explicitly name alternatives or exclusions, but the 'specific' qualifier gives sufficient routing guidance for this simple tool.

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

get_dashboard_statsA

Get dashboard statistics: total applications, active applications, interviews, offers, and average AI match score.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description should disclose behavioral traits. It clarifies the tool is read-only (get) and provides a summary, but it doesn't mention whether responses are aggregated across all users or scoped to a context, or whether the metrics are computed in real-time. The description is adequate but not rich.

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, clear sentence, front-loading the verb and resource, then listing the specific metrics. No wasted words, and it is appropriately structured for a parameter-less tool.

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 the tool has no parameters, no output schema, and no annotations, the description does a good job of explaining what it returns. It lacks a note on the response format (e.g., JSON structure) and whether it supports date filtering, but for a simple stats snapshot it is sufficient.

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 0 parameters, so the description doesn't need to explain parameters. It does explain that it returns aggregate statistics, adding meaning beyond the empty schema, which fully covers the parameters.

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 it retrieves dashboard statistics and enumerates the specific metrics (total applications, active applications, interviews, offers, AI match score), using a specific verb 'Get'. It distinguishes itself from siblings like list_applications (which likely returns detailed records) by focusing on aggregate stats, though it doesn't explicitly name a sibling.

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

Usage Guidelines3/5

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

The description implies usage for a quick overview of key metrics, distinct from detailed tooling, but it does not explicitly state when to prefer this over get_analytics_overview or list_applications. It lacks exclusions or alternative guidance.

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

get_resumeA

Get the user's base resume in JSON Resume format. Includes work history, education, skills, projects, and contact info.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It states the output format (JSON Resume) and content scope, which is useful. However, it doesn't disclose whether this is a read-only operation, whether it returns the full resume or a subset, or any caching/versioning behavior. For a simple getter with no annotations, this is adequate but not rich.

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, no wasted words. The format (JSON Resume) is front-loaded, followed by a compact list of content areas. Every sentence 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 parameterless getter with no output schema, the description is reasonably complete: it names the format and the content areas. It could mention whether the resume is the user's own vs. a candidate's, but the phrase 'the user's base resume' already implies ownership. The lack of an output schema means the description's content list partially compensates, though an agent might still wonder about exact field names.

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 there is no parameter semantics burden on the description. The description adds value by explaining what the returned data contains, which is the closest analog to parameter semantics for a parameterless tool. Baseline 4 for 0 params 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 clearly states the tool's purpose: retrieving the user's base resume in JSON Resume format, and enumerates the content areas (work history, education, skills, projects, contact info). This is a specific verb+resource combination that distinguishes it from the sibling tools, which all concern applications, dashboard stats, or analytics.

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 implies the tool is for fetching the user's own base resume, which is distinct from the application/analytics-focused siblings. It doesn't explicitly state when not to use it or name alternatives, but the context signals (0 params, no siblings with similar names) make the usage context clear enough.

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

list_applicationsA

List job applications from Ascend. Returns a paginated list with status, company, job title, and match score.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of results (default 20, max 100)
offsetNoPagination offset
statusNoFilter by status (e.g. applied, interviewing, offer, rejected)

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral disclosure burden. It usefully discloses pagination and the return fields, but does not mention default limits, ordering, or potential side effects—though it is a list operation and thus implicitly read-only.

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 gives the action and resource, the second the return behavior. Everything present earns its place, and the key scoping phrase is front-loaded.

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 list tool with three optional parameters and no output schema, this is reasonably complete: purpose, pagination, and return fields are covered. It could mention sorting or default page size, but the schema documents the parameters adequately.

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 baseline of 3 applies. The description does not add parameter-level insights beyond what the schema already provides; at most it complements the status filter by listing return fields.

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 specific verb and resource ('List job applications from Ascend') and names the returned fields, making it clearly a list operation. It distinguishes itself from siblings like get_application, which implies fetching a single application, and get_dashboard_stats/get_analytics_overview, which are analytics-oriented.

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 indicates this is the tool for listing applications and notes pagination, placing it in a clear usage context. It does not explicitly state when not to use it or name alternatives, but the sibling names make those alternatives inferable.

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. 5 tool updatesv1.0.0
    • First observedget_analytics_overview
    • First observedget_application
    • First observedget_dashboard_stats
    • First observedget_resume
    • First observedlist_applications

TDQS

A3.9/5.0

Scored across 5 tools

Disambiguation4/5

list_applications and get_application are clearly list-vs-detail, and get_resume is unique. get_dashboard_stats and get_analytics_overview overlap somewhat as aggregate metrics, though current snapshot vs trends helps distinguish them.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern: list_/get_ plus a resource. The naming is predictable and readable across the entire set.

Tool Count5/5

Five tools is a tight, well-scoped set for a job-application insights server. Each tool covers a distinct data need without redundancy.

Completeness4/5

The read-side surface is reasonably complete: list/detail views, resume access, dashboard stats, and analytics. It lacks create/update actions, but for a read-oriented analytics server these are not critical gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Connects your Ashby recruiting data to Claude, enabling natural language queries and management of candidates, applications, jobs, interviews, offers, and team information.
    239 npm
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    Connects Claude to your Strava fitness data, enabling natural language queries about your training history such as activities, stats, and routes.
    8
    -
  • F
    license
    A
    quality
    B
    maintenance
    Connects Claude to the Pandapé recruitment API, enabling natural language management of vacancies, structured candidate review against custom criteria, pipeline stage updates, and CV downloads.
    14
    -
  • F
    license
    A
    quality
    C
    maintenance
    Enables managing a job search through natural language: tracking applications, discovery leads, interview prep, and resume generation. Connects to Claude via MCP to read and update local Excel files and documents.
    35
    -