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

@kula-ai/mcp-server

v0.1.0

Published

MCP server for the Kula recruiting API

Readme

@kula-ai/mcp-server

CI npm License: MIT Node

An MCP (Model Context Protocol) server for the Kula recruiting API. Connect AI assistants like Claude to your Kula account to list jobs, manage applications, configure webhooks, and more.

Quick Start

With Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "kula": {
      "command": "npx",
      "args": ["-y", "@kula-ai/mcp-server"],
      "env": {
        "KULA_API_KEY": "your_api_key_here"
      }
    }
  }
}

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "kula": {
      "command": "npx",
      "args": ["-y", "@kula-ai/mcp-server"],
      "env": {
        "KULA_API_KEY": "your_api_key_here"
      }
    }
  }
}
claude mcp add kula -- npx -y @kula-ai/mcp-server

Then set KULA_API_KEY in your environment.

Manual

npx @kula-ai/mcp-server

Configuration

| Environment Variable | Required | Description | |---------------------|----------|-------------| | KULA_API_KEY | Yes | Your Kula API key |

Get your API key from Kula Developer Settings.

Available Tools

26 tools across 7 categories:

| Tool | Description | |------|-------------| | list_departments | List all departments in the organization as a nested tree structure | | list_offices | List all offices in the organization |

| Tool | Description | |------|-------------| | list_jobs | List jobs | | get_job | Get details of a specific job |

| Tool | Description | |------|-------------| | list_job_posts | List published job posts on the job board | | get_job_post | Get details of a specific job post from the job board |

| Tool | Description | |------|-------------| | create_candidate | Create a new candidate in the system | | list_candidates | List candidates | | get_candidate | Get details of a specific candidate |

| Tool | Description | |------|-------------| | list_applications | List job applications | | get_application | Get details of a specific application | | update_application_stage | Update the stage of a specific application |

| Tool | Description | |------|-------------| | list_webhooks | List all configured webhooks | | create_webhook | Create a new webhook subscription | | get_webhook | Get details of a specific webhook | | update_webhook | Update an existing webhook configuration | | delete_webhook | Delete a webhook | | enable_webhook | Enable a disabled webhook | | disable_webhook | Disable an active webhook | | rotate_webhook_secret | Rotate the signing secret for a webhook | | list_webhook_events | List all available webhook event types you can subscribe to | | get_webhook_sample_payload | Get a sample webhook payload for a specific event type |

| Tool | Description | |------|-------------| | search_companies | Search companies by name | | list_industries | List all available industries | | search_locations | Search locations by query | | search_institutions | Search academic institutions by name | | search_disciplines | Search academic disciplines by name | | list_degrees | List all available academic degrees |

Development

# Use correct Node version
nvm use

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

# Run tests
npm test

# Test with MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js

Connecting locally

To test your local build with an AI client instead of the published package:

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "kula": {
      "command": "node",
      "args": ["/absolute/path/to/kula-mcp/build/index.js"],
      "env": {
        "KULA_API_KEY": "your_api_key_here"
      }
    }
  }
}

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "kula": {
      "command": "node",
      "args": ["/absolute/path/to/kula-mcp/build/index.js"],
      "env": {
        "KULA_API_KEY": "your_api_key_here"
      }
    }
  }
}
claude mcp add kula -- node /absolute/path/to/kula-mcp/build/index.js

Then set KULA_API_KEY in your environment.

Note: The server uses STDIO transport, so there's no hot-reload. After rebuilding (npm run build or via npm run dev), restart the MCP client to pick up changes.

License

MIT