Skip to main content
Glama

add

Add two numbers together to calculate their sum. This tool performs basic addition by taking two numeric inputs and returning the total result.

Instructions

Add two numbers together. Args: a: The first number b: The second number Returns: The sum of a and b

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
aYes
bYes

Implementation Reference

  • server.py:26-38 (handler)
    The handler function for the 'add' tool, decorated with @mcp.tool() which also serves as registration. It takes two float arguments, adds them, and returns the sum. The docstring provides the schema description.
    @mcp.tool() def add(a: float, b: float) -> float: """ Add two numbers together. Args: a: The first number b: The second number Returns: The sum of a and b """ return a + b

Latest Blog Posts

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/xiaoyuchenhot/MCP-example'

If you have feedback or need assistance with the MCP directory API, please join our Discord server