npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@laddro/career-mcp

v0.4.0

Published

MCP server for the Laddro Career API

Readme

@laddro/career-mcp

smithery badge

MCP server for the Laddro Career API. Gives AI agents access to resume tailoring, cover letter generation, PDF export, and template browsing.

Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "laddro-career": {
      "command": "npx",
      "args": ["@laddro/career-mcp"],
      "env": {
        "LADDRO_API_KEY": "laddro_live_..."
      }
    }
  }
}

Claude Code

claude mcp add laddro-career -- npx @laddro/career-mcp

Set the environment variable LADDRO_API_KEY before running.

Remote HTTP

Use the hosted Streamable HTTP endpoint:

https://mcp.laddro.com/mcp

Send your Laddro API key on the MCP initialize request:

Authorization: Bearer laddro_live_...

or:

x-api-key: laddro_live_...

Available tools

| Tool | Description | |---|---| | laddro.templates.list | Browse all 22 resume templates | | laddro.templates.get | Get template colors and fonts | | laddro.fonts.list | All available font families | | laddro.languages.list | All 14 supported locales | | laddro.models.list | AI providers for BYOK | | laddro.resumes.list | User's resumes | | laddro.resumes.get | Resume metadata | | laddro.resumes.render | Re-render with new template settings | | laddro.resumes.tailor | AI-tailor resume for a job | | laddro.resumes.export | Export as PDF | | laddro.coverLetters.list | User's cover letters | | laddro.coverLetters.get | Cover letter metadata | | laddro.coverLetters.create | Create manually | | laddro.coverLetters.generate | AI-generate from resume + job | | laddro.coverLetters.render | Render with template settings | | laddro.settings.get | Current AI provider config | | laddro.settings.updateModel | Set BYOK provider | | laddro.settings.deleteModel | Remove BYOK config |

Environment variables

| Variable | Required | Description | |---|---|---| | LADDRO_API_KEY | Yes for stdio; optional fallback for HTTP | Your Laddro API key | | LADDRO_BASE_URL | No | Override API URL (default: https://api.laddro.com) |

Development

npm ci
npm test

npm test builds the TypeScript package and runs MCP contract tests for auth handling, tool metadata, and handler routing.

Releases

This package uses Changesets and SemVer.

  • Patch: bug fixes, docs, tests, internal hardening.
  • Minor: new backwards-compatible MCP tools or capabilities.
  • Major: breaking tool names, schemas, auth, or transport behavior.

Every PR that changes the published package should include a changeset:

npm run changeset

After the PR merges to main, GitHub Actions opens a release PR with the version bump and changelog. Merging that release PR publishes the package to npm and creates the GitHub release. The Cloud Run deploy workflow also runs on main, so hosted MCP updates automatically after release merges.

Links

License

MIT