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

mcp-computrabajo

v0.1.0

Published

A Model Context Protocol (MCP) server for accessing Computrabajo job listings in Latin America

Readme

MCP Logo MCP Computrabajo

A Model Context Protocol (MCP) server for searching and applying to jobs on Computrabajo, Latin America's largest job board

TypeScript Bun MCP License: MIT

MCP Computrabajo is a Model Context Protocol server that provides AI assistants with access to Computrabajo job listings. Search for jobs, view full details, and apply — all through standardized MCP tools.


What can you do with this MCP?

  • Search job listings by keyword and location across multiple countries
  • View full job details including description, requirements, salary, benefits, and company info
  • Apply to jobs directly using your authenticated Computrabajo session

Quick Start

Prerequisites

  • Bun v1.2.10+ or Node.js v18+
  • An MCP-compatible client (Claude Desktop, Claude Code, etc.)
  • A Computrabajo account with active session cookies

Getting your session cookies

  1. Log in to Computrabajo in your browser
  2. Open DevTools (F12) → Network tab
  3. Navigate to any page on Computrabajo
  4. Right-click a request → Copy as cURL
  5. Extract the cookie string from the -b or --cookie flag

Option 1: Claude Desktop

Open your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "computrabajo": {
      "command": "bun",
      "args": ["/absolute/path/to/mcp-computrabajo/src/index.ts"],
      "env": {
        "CT_COOKIES": "ut=...; uca=...; ncac=...; nca=...; trl=...",
        "CT_COUNTRY": "pe"
      }
    }
  }
}

Option 2: Claude Code

claude mcp add --transport stdio \
  --env CT_COOKIES="ut=...; uca=...; ncac=...; nca=...; trl=..." \
  --env CT_COUNTRY=pe \
  computrabajo -- bun /absolute/path/to/mcp-computrabajo/src/index.ts

Option 3: Clone and run locally

git clone https://github.com/georgegiosue/mcp-computrabajo.git
cd mcp-computrabajo
bun install

Tip: Use the MCP Inspector for debugging: bun run inspect


Authentication

Cookies are only required for applying to jobs (apply-to-job). Searching and viewing job details work without authentication.

Cookie resolution order

The MCP reads cookies from the first available source:

  1. CT_COOKIES environment variable
  2. File at CT_COOKIES_FILE environment variable
  3. ~/.computrabajo/cookies.txt

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | CT_COOKIES | No | — | Full cookie string from your browser session | | CT_COOKIES_FILE | No | ~/.computrabajo/cookies.txt | Path to a file containing the cookie string | | CT_COUNTRY | No | pe | Country code: pe, co, mx, ar, cl, ec |


Available Tools

| Tool | Description | Parameters | |------|-------------|------------| | search-jobs | Search job listings by keyword and location | keyword, location?, country?, page? | | get-job-detail | Get full details of a job offer | offerId, country? | | apply-to-job | Apply to a job offer (requires auth) | offerId, country? |


Screenshots

Searching for jobs

Searching for software engineering jobs in Lima

Applying to a job

Applying to a job offer through Claude Code

Confirmation on Computrabajo

Job application confirmed on Computrabajo website


Usage Examples

Once connected, you can ask Claude naturally:

  • "Search for software jobs in Lima"
  • "Find remote Python developer jobs in Peru"
  • "Show me the details of this job offer"
  • "Apply to this job for me"
  • "Search for marketing jobs in Trujillo, page 2"

Supported Countries

| Code | Country | |------|---------| | pe | Peru | | co | Colombia | | mx | Mexico | | ar | Argentina | | cl | Chile | | ec | Ecuador |


Project Structure

mcp-computrabajo/
├── src/
│   ├── config/                        # API configuration & cookie handling
│   ├── domain/
│   │   ├── models/                    # Domain model interfaces
│   │   └── ports/                     # Repository interface (contract)
│   ├── infrastructure/
│   │   ├── http/                      # HTTP repository (fetch + cheerio)
│   │   └── mcp/
│   │       └── tools/
│   │           ├── index.ts           # Registers all tools
│   │           ├── tool.ts            # Tool interface + register() helper
│   │           ├── error.ts           # Shared errorResponse()
│   │           └── job/
│   │               ├── search-jobs/
│   │               ├── get-job-detail/
│   │               └── apply-to-job/
│   ├── shared/                        # Shared utilities
│   └── index.ts                       # MCP server entry point
├── package.json
└── tsconfig.json

Development

# Install dependencies
bun install

# Run with MCP Inspector
bun run inspect

# Format code
bun run format

# Build
bun run build

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/new-feature)
  3. Format your code (bun run format)
  4. Commit your changes
  5. Open a Pull Request

License

MIT License - see LICENSE for details.


Acknowledgments