StudentHub 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., "@StudentHub MCPsearch candidates with Go experience in the Netherlands"
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.
StudentHub MCP — read-only data layer
Agent-facing MCP server exposing the StudentHub recruitment database as read-only tools. Built for the BAWES agent fleet (recruitment, outreach, interview coordination) — no write tools, no mutations, ever.
Safety contract
SELECT-only. Every tool is a parameterized SELECT. There are no write tools, no DDL, no mutations of any kind.
Hard limits. Every collection query caps at 200 rows (default 50).
Defense in depth (prod). The server is read-only AND is designed to run against a dedicated
mcp_readerMySQL user (SELECT-only grant), so even a server bug or compromise cannot modify prod data.Dev-clone first. All development and testing happens against the local MySQL dev clone (
studenthub_prod_local), never prod. Prod is only touched after explicit approval, using the read-only user.
Related MCP server: mcp-database
Tools (phase 1 — recruitment domain)
Tool | Purpose |
| Filter candidates by name/email/phone, country, university, skill, status |
| Full profile: contact, skills, education, work history, links |
| Hiring pipeline: status, company, position, dates |
| Full request: position, company, applications (candidates), timeline |
| Companies with parent/sub-company relationship |
| Company hierarchy: parent + sub-companies (for rate/invoice aggregation) |
| University reference with candidate counts |
| Country distribution of the candidate pool |
Run locally
python3 -m venv .venv
.venv/bin/pip install -e .
# .env with SH_DB_HOST, SH_DB_PORT, SH_DB_USER, SH_DB_PASSWORD, SH_DB_NAME
.venv/bin/python server.py # serves on :8000, /health + /mcp
.venv/bin/python probe.py # end-to-end handshake + tool callsHealth: GET http://127.0.0.1:8000/health → {"status":"ok","read_only":true}
Schema notes (verified against dev clone of prod, 2026-08-11)
Legacy Yii2 DB: UUID primary keys (
request_uuid,application_uuid), snake_case columns, country/university referenced via FK ids.candidate_countrydoes NOT exist — joincountryviacandidate.country_id.request_candidatedoes NOT exist — it'srequest_application.request_interviewis vestigial (0 rows);fulltimeris legacy/stale and deliberately NOT exposed — it doesn't fit the universal people model.Phone numbers are partially masked in the source data itself (e.g.
+965****3854) for some candidates — not a bug in this server.Status enums (verified):
request.request_status∈ cancelled(1604) / delivered(929) / finished_by_recruitment(171) / started(1) / re_work(1). There is NOpendingstatus in current data.
Roadmap
Phase 2 (finance): transfers, invoices + sub-company aggregation, contracts, rates — aggregation logic lifted from codex
finance/actions.ts.Phase 3: story/invitation funnel (recruiter velocity), staff ops, stores.
Phase 4: email/marketing, engagement.
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-qualityBmaintenanceRead-only MySQL MCP server for safe schema inspection and SELECT-style queries.8MIT
- AlicenseAqualityCmaintenanceRead-only MySQL/MariaDB MCP server for running SELECT queries safely, with automatic read-only enforcement and query limits.34MIT
- AlicenseAqualityAmaintenanceRead-only MCP server for querying PostgreSQL, MySQL, and SQLite from AI agents — multi-database, safe by default.4181ISC
- Alicense-qualityCmaintenanceAn extensible read-only MCP server for SQL databases, enabling schema exploration and safe SELECT queries via tools like list_schemas, list_tables, describe_table, and execute_query.MIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Read-only MCP server for wafergraph.com's semiconductor & AI supply-chain data: 30 tools, no auth.
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/BAWES-Universe/studenthub-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server