andi-mcp

ajerni/andi-mcp

3.1

If you are the rightful owner of andi-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.

This is a simple Model Context Protocol (MCP) server implementation that exposes several utility functions as tools.

MCP Server

This is a simple Model Context Protocol (MCP) server implementation that exposes several utility functions as tools.

Purpose

Andi's personal MCP server test on glama.ai / Used in cursor with:

pip install "mcp[cli]"

Available Tools

The server provides the following tools:

  • add: Add two numbers
  • multiply: Multiply two numbers
  • andigreeter: Responds with information about Andi
  • namegreeter: Greets a user by name

Custom Development

To add more tools, simply define new functions with the @mcp.tool() decorator:

@mcp.tool()
def your_function(param1: type, param2: type) -> return_type:
    """Description of your function"""
    # Your code here
    return result