AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mcp Computrabajo

mcp-georgegiosue-mcp-computrabajo · by georgegiosue

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

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add mcp-georgegiosue-mcp-computrabajo

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-georgegiosue-mcp-computrabajo)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mcp Computrabajo? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Computrabajo

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

[](https://www.npmjs.com/package/mcp-computrabajo) [](https://www.typescriptlang.org/) [](https://bun.sh) [](https://modelcontextprotocol.io) [](https://opensource.org/licenses/MIT)

  • English: [README.md](README.md) (You are here)
  • Español: [README.es.md](README.es.md)

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 (Recommended)

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": "npx",
      "args": ["mcp-computrabajo@latest"],
      "env": {
        "CT_COOKIES": "ut=...; uca=...; ncac=...; nca=...; trl=...",
        "CT_COUNTRY": "pe"
      }
    }
  }
}

Restart Claude Desktop. You'll see an MCP indicator when the server is connected.

Option 2: Claude Code

claude mcp add --transport stdio \
  --env CT_COOKIES="ut=...; uca=...; ncac=...; nca=...; trl=..." \
  --env CT_COUNTRY=pe \
  computrabajo -- npx mcp-computrabajo@latest

Option 3: Claude Desktop (with Bun)

{
  "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 4: Claude Code (with Bun)

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 5: 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

Applying to a job

Confirmation on Computrabajo


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](LICENSE) for details.


Acknowledgments

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.