Install
$ agentstack add mcp-georgegiosue-mcp-computrabajo ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Log in to Computrabajo in your browser
- Open DevTools (F12) → Network tab
- Navigate to any page on Computrabajo
- Right-click a request → Copy as cURL
- Extract the cookie string from the
-bor--cookieflag
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:
CT_COOKIESenvironment variable- File at
CT_COOKIES_FILEenvironment variable ~/.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
- Fork the repository
- Create a feature branch (
git checkout -b feature/new-feature) - Format your code (
bun run format) - Commit your changes
- Open a Pull Request
License
MIT License - see [LICENSE](LICENSE) for details.
Acknowledgments
- Computrabajo — Latin America's largest job board
- Model Context Protocol — MCP specification
- Bun — Fast JavaScript runtime
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: georgegiosue
- Source: georgegiosue/mcp-computrabajo
- License: MIT
- Homepage: https://www.npmjs.com/package/mcp-computrabajo
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.