bdjobs.mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bdjobs.mcpfetch BDjobs profile for user 123456 and log 789012"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
BDjobs Profile Server
This project implements a small MCP-compatible server that fetches BDjobs profile data using Puppeteer and exposes a tool for retrieving the profile text.
Project structure
src/- TypeScript source codedist/- Compiled output (not committed)package.json- Node package configurationtsconfig.json- TypeScript compiler configuration.gitignore- Ignored files and folders for Git
Related MCP server: openlinkedinmcp
Prerequisites
Node.js 18+ installed
npm installed
Setup
Open a terminal in the project folder:
cd D:\WordPress_Ai\bdjobsInstall dependencies:
npm install
Build
Compile the TypeScript source into dist/:
npm run buildRun
Start the server from the compiled output:
npm startDevelopment
If you want to run TypeScript directly during development, install ts-node and use a direct execution command or run your own script.
GitHub / Version Control
Initialize Git (if not already initialized):
git initAdd files:
git add .Commit:
git commit -m "Initial commit"Add remote repository and push:
git remote add origin https://github.com/your-username/your-repo.git git branch -M main git push -u origin main
Security notes
Do not commit
node_modules/ordist/.Do not store secrets, cookies, API keys, or personal credentials in source files.
Use
.envor another secure secret management method if you need configuration values.
How it works
The server exposes a tool named fetch_complete_profile and accepts two parameters:
userId- the value ofMybdjobsUserIdcookielogId- the value ofMybdjobsLogIdcookie
It launches Puppeteer, injects the cookies, opens BDjobs, and returns the page text.
Notes
You may need to install additional Puppeteer dependencies depending on your OS.
This project is intended for use with an MCP-compatible client.
This server cannot be deployed
Maintenance
Related MCP Connectors
Public MCP server for discovering open jobs. Search, filter, and get application links.
GetJobzi MCP server for job search, application tracking, and career forecasting.
- LinkMCPOAuthio.linkmcp
Hosted MCP server for LinkedIn: 31 tools for profiles, search, messaging, posts, enrichment.
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceSelf-hosted MCP server that scrapes LinkedIn jobs using your authenticated session cookies, enabling job search and details retrieval without per-run costs.-
- AlicenseBqualityCmaintenancePlaywright-powered MCP server for LinkedIn that automates jobs, profile edits, messaging, network actions, and feed posts using a real logged-in browser session.36Apache 2.0
- AlicenseAqualityBmaintenanceAn MCP server that lets AI assistants like Claude read LinkedIn data through your own logged-in browser session. Access profiles and companies, search for jobs, or get job details.19Apache 2.0
- AlicenseNot gradedqualityAmaintenanceMCP server that lets you analyze your own LinkedIn profile with a local LLM (LM Studio). It uses Playwright to reuse your browser session, fetch profile data as JSON, and provides tools for session management and profile analysis.1MIT