mcp_server

CodechefVaibhav/mcp_server

3.1

If you are the rightful owner of mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The MCP Candidate Portal Server is a FastAPI-based server designed to facilitate candidate searches by leveraging experience, location, and department data.

# MCP Candidate Portal Server

This FastAPI-based MCP server exposes tools for candidate search based on experience, location, and department.

## Setup
```bash
docker-compose up --build

Endpoints

  • POST /register/context: Register a tool context node.
  • GET /register/context/{node_id}: Retrieve a registered node.
  • POST /tools/candidate/search: Search for candidates.
  • GET /health: Health check.

Integration with ChatMCP

  1. Configure ChatMCP client to point to http://<server>:3000.
  2. Use the /register/context endpoint to register tool definitions on startup.
  3. Call /tools/candidate/search from ChatMCP when user invokes candidate search intent.
  4. Parse and display results in ChatMCP chat interface.