mcp-server-for-addition-tool
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-for-addition-toolAdd 1234 and 5678, please."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐งฎ My MCP Server
A simple Model Context Protocol (MCP) server built with Node.js, TypeScript, and the MCP TypeScript SDK.
Designed for seamless integration with LLMs to provide real-time tool execution via standard I/O.
โจ Features
๐ Stdio Transport: Reliable local inter-process communication via
stdio.โก
add_numbersTool: Exposes addition calculations directly to context-aware models.๐ก๏ธ Type-Safe Validation: Full input schema validation powered by Zod.
๐งช Inspector Tested: Fully tested and verified using the official MCP Inspector.
Related MCP server: yifanli-mcp-add-demo
๐ ๏ธ Tech Stack
Technology | Role |
Node.js | Server Runtime Environment |
TypeScript | Type-Safe Application Logic |
MCP SDK | Model Context Protocol Implementation |
Zod | Schema & Argument Validation |
๐ Project Structure
my-mcp-server/
โโโ ๐ src/
โ โโโ ๐ index.ts
โโโ ๐ .gitignore
โโโ ๐ package.json
โโโ ๐ package-lock.json
โโโ ๐ tsconfig.json
โโโ ๐ README.mdThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server (stdio): validate JSON against JSON Schema (draft-07 / 2020-12) via the AgentForge API
Nifty's MCP server โ exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for progressive tool usage at any scale (see https://klavis.ai)
MCP server for langchain documentation, generated by doc2mcp.
Related MCP Servers
- AlicenseDqualityDmaintenanceA minimal Model Context Protocol server that provides a simple add(a, b) tool for computing the sum of two numbers.14 npmMIT
- FlicenseBqualityNot gradedmaintenanceA minimal Model Context Protocol server that provides a simple tool for adding two integers. It serves as a demonstration of the official Python MCP SDK and is designed for local execution via stdio.1-
- AlicenseNot gradedqualityDmaintenanceA minimal MCP server with four tools (add, greet, text_stats, divide) demonstrating typed parameters, structured outputs, and error handling over stdio transport.MIT
- FlicenseNot gradedqualityCmaintenanceA model-agnostic MCP server exposing example tools (add1, multiply2, greet) for learning purposes, working with any LLM through stdio transport.-