Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A comprehensive BambooHR MCP server providing read/write access to employee data, time-off, files, analytics, and reports.

README.md

cl-bamboohr-mcp

A comprehensive BambooHR MCP (Model Context Protocol) server providing read/write access to employee data, time-off, files, analytics, and reports.

Background

This project was built by evaluating three existing open-source BambooHR MCP servers, then combining the best architecture, features, and API coverage from all three into a single, secure, well-tested server:

| Source | Repo | What we took | |--------|------|-------------| | Architectural base | evrimalacan/mcp-bamboohr | Cleanest TypeScript, proven test patterns, singleton client, core read tools (employee, time-off, files, meta) | | Write operations | a-isakov/bamboohr-mcp | update-employee, create-time-off-request, employee files, departments | | Analytics & reports | zuharz/bamboo-mcp-unofficial | Workforce analytics, custom reports, dataset discovery, find-employee, get-team-info, caching/retry patterns |

All three source repos are MIT-licensed. None were production-quality individually (0-2 GitHub stars, security issues like API key leaks in logs, missing input validation). This project addresses those gaps with proper input validation, credential sanitization, field allowlists for write operations, and comprehensive test coverage.

The entire server — code, tests, and documentation — was generated by Claude (Opus 4.6) based on a detailed architecture plan derived from auditing the three source repos.

Features

  • 21 tools covering the full BambooHR API surface
  • Read and write operations (employee updates, time-off requests)
  • Built-in caching, retry with exponential backoff, and error categorization
  • Security hardening: input validation, credential sanitization, field allowlists
  • TypeScript with 100+ tests

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "bamboohr": {
      "command": "node",
      "args": ["/path/to/cl-bamboohr-mcp/dist/index.js"],
      "env": {
        "BAMBOO_API_TOKEN": "your-api-key",
        "BAMBOO_COMPANY_DOMAIN": "your-company"
      }
    }
  }
}

From Source

git clone https://github.com/iseletsk/cl-bamboohr-mcp.git
cd cl-bamboohr-mcp
npm install
npm run build

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | BAMBOO_API_TOKEN | Yes | — | BambooHR API key | | BAMBOO_COMPANY_DOMAIN | Yes | — | Company subdomain | | DEBUG | No | false | Enable debug logging | | BAMBOO_CACHE_TTL_MS | No | 300000 | Cache TTL in ms (5 min) | | BAMBOO_MAX_RETRIES | No | 3 | Max retry attempts | | BAMBOO_REQUEST_TIMEOUT_MS | No | 30000 | Request timeout in ms | | BAMBOO_UPDATE_ALLOWED_FIELDS | No | — | Comma-separated allowlist for update-employee |

Tools

Employee Management (6)

  • get-employee — Get employee details by ID
  • find-employee — Search directory by name/email/department
  • update-employee — Update employee fields (WRITE)
  • get-employee-directory — Full company directory
  • get-employee-photo — Employee photo URL
  • get-employee-goals — Performance goals

Time Off (4)

  • get-whos-out — Who's currently out
  • get-time-off-requests — Filter requests by date/status
  • estimate-time-off-balance — Future balance estimate
  • create-time-off-request — Create a request (WRITE)

Files (3)

  • list-company-files — Company files by category
  • get-company-file — File metadata
  • get-employee-files — Employee files by category

Organization (3)

  • get-meta-fields — Field metadata (filterable by type)
  • get-departments — All departments
  • get-team-info — Team members by supervisor/department

Analytics (3)

  • discover-datasets — Available datasets
  • discover-fields — Fields in a dataset
  • workforce-analytics — Query datasets with filters

Reports (2)

  • list-custom-reports — Saved reports
  • run-custom-report — Execute a report

Security

  • All IDs validated (numeric regex for employee/file/report IDs)
  • Subdomain validated at startup
  • No credential logging — auth stripped from error objects
  • Optional field allowlist for write operations
  • Dates and enums validated via Zod schemas

Development

npm test              # Run tests
npm run test:coverage # Run with coverage
npm run build         # TypeScript compilation
npm run lint          # Type check only

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.