iam-mcp-server

alejandrogarcia-hub/iam-mcp-server

3.3

If you are the rightful owner of iam-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 Individual Applicant Mesh MCP Server is designed to facilitate seamless communication and data exchange between various applications using the Model Context Protocol (MCP).

IAM MCP SERVER ... kind of πŸ€”

The Individual Applicant Mesh (IAM) MCP Server is designed to process and manage applicant resumes, as well as facilitate job searches. It offers specialized tools and prompts for job searching, resume aggregation, generating job-specific resumes, and creating tailored cover letters.

Note: This server does not fully handle system integrations. Instead, it provides focused functionality specifically for an MCP hostβ€”hence the "kind of πŸ€”".

πŸ’‘ Community & Support
If you found this project helpful, please consider giving it a star ⭐️. Found a bug or have suggestions? Open an issueβ€”your feedback is welcome!

πŸš€ Quickstart

1. Use Claude Desktop as MCP host

The IAM MCP Server is designed to work with Claude Desktop, which provides the necessary MCP host environment. For more details on setting up Claude Desktop with MCP, see the official MCP quickstart guide.

2. Add filesystem MCP server

Add the filesystem MCP server to Claude Desktop to enable file system access (see Requirements section below for configuration example).

3. Get JSearch API token

Create a free account at JSearch to get your API token (200 free requests/month).

⚠️ Note: This step is optional. You can let the MCP host or another MCP server handle job searches instead.

4. Configure IAM MCP Server

Add the following to your Claude Desktop configuration to run the server directly from PyPI using uvx:

{
  "mcpServers": {
    "iam": {
      "command": "uvx",
      "args": [
        "--from", 
        "iam-mcp-server@latest",
        "mcp-server-iam"
      ],
      "env": {
        "LOG_LEVEL": "INFO",
        "RAPIDAPI_KEY": "<YOUR_API_KEY>",
        "RAPIDAPI_HOST": "jsearch.p.rapidapi.com",
        "MCP_TRANSPORT": "stdio"
      }
    }
  }
}

πŸš€ Ready to start using IAM MCP Server?
Check out the Features section to learn how to use the available tools and prompts.

πŸ“ Requirements

  1. πŸ—‚οΈ The MCP host must have read and write access to the local file system where it is running. For example, you can run the IAM MCP Server within Claude Desktop, alongside the filesystem MCP Server, which provides this capability. This file access requirement applies to version 1.0 and is necessary for proper operation.

    1.1. Add the filesystem MCP server

        {
            "mcpServers": {
                "filesystem": {
                    "command": "npx",
                    "args": [
                        "-y",
                        "@modelcontextprotocol/server-filesystem",
                        "<add directory for filesystem server>"
                    ]
                }
            }
        }
    
  2. πŸ” The search job MCP tool requires access to JSearch. You can create an account and get 200 requests per month for free.

✨ Features

Prompts

πŸ“Š Analyze Job Market

Directs the LLM step-by-step to perform tasks such as conducting a job search, then summarizes and analyzes the resulting job listings. Refer to the full prompt for detailed instructions and context.

πŸ“„ Resume Mesh

Easily combine multiple targeted resumes into a single, comprehensive Markdown document.

What is Resume Mesh?
If you’ve applied to similar jobs, you’ve likely created several versions of your resume to match different job descriptions. Resume Mesh brings all those versions together into one unified Markdown file. This gives the MCP host a complete view of your experience and makes it easy to generate new, tailored resumes for future applications.

🎯 Job-Specific Resume Generation

Generate customized resumes for individual job postings.

To use this feature, make sure the MCP host already has access to the resume mesh. Each tailored resume is generated using both the resume mesh and the specific job description. You need to attach the resume mesh to the MCP host conversation in advance, because the resume generation prompt does not instruct the LLM to load the resume mesh from the file system.

Cover-Letter Generation

Easily generate a customized cover letter tailored to a specific job description, using the corresponding generated resume.

How to use:
Before generating a cover letter, ensure the MCP host has access to the relevant generated resume for the target job. You must manually attach this resume to the MCP host conversation, as the cover letter prompt does not automatically retrieve it from the file system.

πŸ’Ύ Save Job

Directs the LLM step-by-step to save jobs.

How to use:

Start by searching for jobs using the search jobs MCP tool. After obtaining the results, you can then instruct the LLM to save those job listings.

Tools

πŸš€ Search Jobs

Performs a job search using the following parameters:

  • role: The job title or position to search for
  • city: (optional) Target city for the job search
  • country: (optional) Target country for the job search
  • platform: (optional) Specific job platform to use
  • number of jobs: (default 5) Number of job listings to retrieve
  • slice job description: (optional) Option to include only a portion of the job description

πŸ› οΈ Installation & Setup

You can easily install this project as a Python package from PyPI: iam-mcp-server.

πŸ–₯️ MCP host (Claude Desktop)

  1. Locate your claude_desktop_config.json file:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
Option 1: Using uvx with PyPI package
{
  "mcpServers": {
    "iam": {
        "command": "uvx",
        "args": [
            "--from", 
            "iam-mcp-server@latest",
            "mcp-server-iam"
        ],
        "env": {
            "LOG_LEVEL": "INFO",
            "RAPIDAPI_KEY": "<API KEY>",
            "RAPIDAPI_HOST": "jsearch.p.rapidapi.com",
            "MCP_TRANSPORT": "stdio"
        }
    }
}
Option 2: Using source code
{
  "mcpServers": {
    "iam": {
      "command": "<path to>/uv",
      "args": [
        "--directory",
        "<path to>/iam-mcp-server/src/mcp_server_iam",
        "run",
        "__main__.py"
      ],
      "env": {
        "LOG_LEVEL": "INFO",
        "RAPIDAPI_KEY": "<API KEY>",
        "RAPIDAPI_HOST": "jsearch.p.rapidapi.com",
        "MCP_TRANSPORT": "stdio"
      }
    }
  }
}
Restart your MCP host
  • Completely quit and restart your MCP host
  • The server will automatically initialize when the host starts
Verify the connection

In your MCP host, ask: "What MCP tools are available?" or "List the available MCP servers"

πŸ” MCP Inspector

In terminal, run mcp dev src/mcp_server_iam/__main__.py and accept installing the MCP Inspector. In the web inspector UI, click connect and interact with the MCP server.

⚠️ Important, this is for dev purposes only.

βš™οΈ Environment Variables

IAM supports configuration through environment variables. Create a .env file in the project root or set these variables in your system:

VariableDefaultDescription
APP_NAMEiamApplication name for logging and identification
LOG_LEVELINFOLogging level: DEBUG, INFO, WARNING, ERROR, CRITICAL
MCP_TRANSPORTstdioApplication transport version
RESUME_MESH_FILENAMEresume_meshDefault filename for resume mesh
RAPIDAPI_KEY""RapidAPI key for external API access (optional)
RAPIDAPI_HOSTjsearch.p.rapidapi.comRapidAPI host endpoint

πŸ“‚ Repository Structure

iam-mcp-server/
β”œβ”€β”€ src/                        # Source code
β”‚   └── mcp_server_iam/         # Main MCP server package
β”‚       β”œβ”€β”€ __init__.py         # Package initialization
β”‚       β”œβ”€β”€ __main__.py         # Entry point for running the server
β”‚       β”œβ”€β”€ config.py           # Configuration management
β”‚       β”œβ”€β”€ prompt.py           # LLM prompts and instructions
β”‚       β”œβ”€β”€ server.py           # MCP server implementation
β”‚       β”œβ”€β”€ tool.py             # MCP tools implementation
β”‚       └── utils.py            # Utility functions
β”œβ”€β”€ tests/                      # Test suite
β”‚   β”œβ”€β”€ __init__.py
β”‚   └── test_mcp_tools.py       # MCP tools tests
β”œβ”€β”€ .env_example                # Environment variables template
β”œβ”€β”€ LICENSE                     # MIT License
β”œβ”€β”€ makefile                    # Build and development tasks
β”œβ”€β”€ pyproject.toml              # Project configuration and dependencies
β”œβ”€β”€ pytest.ini                 # Pytest configuration
β”œβ”€β”€ README.md                   # This file
β”œβ”€β”€ ruff.toml                   # Ruff linter configuration
└── uv.lock                     # UV dependency lock file

πŸ”‘ Key Components

  • src/mcp_server_iam/: Core MCP server implementation

    • server.py: Main MCP server class and protocol handling
    • tool.py: Implementation of MCP tools (job search, etc.)
    • prompt.py: LLM prompts for resume generation and job analysis
    • config.py: Configuration management and environment variables
    • utils.py: Helper functions and utilities
  • tests/: Comprehensive test suite for MCP tools and functionality

  • Configuration files: Project setup, linting, and dependency management

πŸ“ License

MIT License - see LICENSE file for details