MySkillDB Job Categories MCP
Click on "Install 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., "@MySkillDB Job Categories MCPPush a job category for Backend Engineering with skills and growth plan, then list categories"
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.
MySkillDB Job Categories MCP
MCP server so Claude (Desktop / Code) or Cursor can push job categories into a college org through the existing MySkillDB API.
Two ways to run it:
Mode | File | Auth | Best for |
HTTP connector (recommended) |
| Click Connect in Claude → login page → done | Claude custom connectors |
Stdio |
| Paste JWT into config env | Cursor / quick local use |
HTTP connector — "Connect" with login
Start it (MySkillDB API must be running):
cd MySkillDb-mcp
npm run start:http
# MCP endpoint: http://localhost:3737/mcpThen in Claude → Settings → Connectors → Add custom connector, enter:
http://localhost:3737/mcpClick Connect — a MySkillDB login page opens. Sign in with your org admin email/password and Claude gets access automatically. Tokens refresh on their own; no JWT copying.
The org is taken from the logged-in user's account, so there's nothing else to configure.
If your Claude client refuses plain
http://localhost(claude.ai web requires a public HTTPS URL), expose it with a tunnel:npx cloudflared tunnel --url http://localhost:3737Then restart with
MCP_PUBLIC_URL=https://your-tunnel-domain.trycloudflare.com npm run start:httpand addhttps://your-tunnel-domain.trycloudflare.com/mcpas the connector.
Env vars (all optional):
Env | Default |
|
|
|
|
|
|
Related MCP server: jobs-mcp-server
Stdio mode (token in config)
Tools
Tool | Purpose |
| List categories for the org |
| Fetch one by slug or id |
| Create or update one category (match by |
| Batch upsert (up to 50) — best for Claude-authored catalogs |
| Ensure the catch-all Other category exists |
| Delete by id (Other is protected server-side) |
Setup
cd MySkillDb-mcp
npm install1. Get an access token
Log in as org_admin (or acc_manager / master_admin) and copy the JWT access token, e.g. from DevTools → Application → localStorage, or:
curl -s -X POST http://localhost:3001/api/auth/login \
-H 'Content-Type: application/json' \
-d '{"email":"you@college.edu","password":"your-password"}'Use the accessToken from the response. Also note your organizationId.
2. Env vars the MCP needs
Env | Example |
|
|
| JWT from login |
|
|
3. Claude Desktop config
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"myskilldb-job-categories": {
"command": "npx",
"args": [
"tsx",
"/Users/ajaykrishnan/Downloads/MySkillDB/Apps/MySkillDB_New/MySkillDb-mcp/src/index.ts"
],
"env": {
"MYSKILLDB_API_BASE_URL": "http://localhost:3001/api",
"MYSKILLDB_ACCESS_TOKEN": "paste-jwt-here",
"MYSKILLDB_ORGANIZATION_ID": "paste-org-id-here"
}
}
}
}Restart Claude Desktop after saving.
4. Cursor config
Add the same block under Cursor MCP settings / .cursor/mcp.json:
{
"mcpServers": {
"myskilldb-job-categories": {
"command": "npx",
"args": [
"tsx",
"/Users/ajaykrishnan/Downloads/MySkillDB/Apps/MySkillDB_New/MySkillDb-mcp/src/index.ts"
],
"cwd": "/Users/ajaykrishnan/Downloads/MySkillDB/Apps/MySkillDB_New/MySkillDb-mcp",
"env": {
"MYSKILLDB_API_BASE_URL": "http://localhost:3001/api",
"MYSKILLDB_ACCESS_TOKEN": "paste-jwt-here",
"MYSKILLDB_ORGANIZATION_ID": "paste-org-id-here"
}
}
}
}Example prompt for Claude
Using the MySkillDB job categories MCP, push a Tech category for "Backend Engineering" with slug
backend-engineering, categoryKeybackend, about/day-in-life/skills/tools/growth plan suitable for Indian campus placement students. Then list categories to confirm.
Claude should call upsert_job_category or push_job_categories.
Local smoke test
With the API running and env exported:
export MYSKILLDB_API_BASE_URL=http://localhost:3001/api
export MYSKILLDB_ACCESS_TOKEN=...
export MYSKILLDB_ORGANIZATION_ID=...
npm run inspectNotes
The MySkillDB server must be running.
Token must belong to an admin role that can write
/api/job-categories.Never commit real JWTs into git — keep them in local MCP config only.
stdout is reserved for MCP JSON-RPC; logs go to stderr.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA template MCP server that provides job searching tools (analyze descriptions, fetch postings, search opportunities) and basic image processing capabilities. Includes built-in authentication and is designed to work seamlessly with Puch AI.Last updated59Apache 2.0
- Flicense-qualityBmaintenanceMCP server that exposes a MongoDB healthcare jobs collection, enabling listing, searching, creating, updating, deleting jobs and getting summary counts.Last updated
- Alicense-qualityAmaintenanceMCP server that exposes job search data from multiple boards, enabling clients to query and manage job listings via natural language.Last updated7MIT
- AlicenseAqualityCmaintenanceMCP server that scours job openings from public, ToS-clean sources (Greenhouse, Lever, Ashby, HN, RemoteOK, Adzuna, USAJobs) and provides tools for job search, company listings, and salary context.Last updated4MIT
Related MCP Connectors
GetJobzi MCP server for job search, application tracking, and career forecasting.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/akeledath-gif/MSDB-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server