job-app-mcp

PT-Perkasa-Pilar-Utama/job-app-mcp

3.1

If you are the rightful owner of job-app-mcp 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 job-app-mcp is a simple model context protocol server designed for demonstration purposes, showcasing the integration of MCP technology with job application systems.

job-app-mcp

Simple mcp server to be used for MCP demo.

Installation

With Claude Desktop

[!NOTE] Make sure job-app-rest and job-app-mcp is in the same OS Since the protocol is going to use Stdio

Here's the sample on ubuntu, you can adjust the path. Also we're using Bunjs.

{
  "mcpServers": {
    "job-app": {
      "command": "/home/snowfluke/.bun/bin/bun",
      "args": [
        "--env-file=/home/snowfluke/project/mcp/job-app-mcp/.env",
        "/home/snowfluke/project/mcp/job-app-mcp/src/index.local.ts"
      ]
    }
  }
}

Windows:

{
  "mcpServers": {
    "job-app": {
      "command": "bun",
      "args": [
        "--env-file=C:\\Users\\username\\Downloads\\mcp\\job-app-mcp\\.env",
        "C:\\Users\\username\\Downloads\\mcp\\job-app-mcp\\src\\index.local.ts"
      ]
    }
  }
}