first-node-mcp-server
A simple Model Context Protocol server that provides an addition tool for adding two numbers.
README
First Node MCP Server
A simple Model Context Protocol (MCP) server implementation in Node.js that provides an addition tool.
About
This project implements a basic MCP server that exposes an "add" tool which adds two numbers together. It demonstrates how to create a simple Model Context Protocol server using the MCP SDK.
Prerequisites
- Node.js (v18 or later recommended)
- npm
Installation
Clone the repository and install dependencies:
git clone https://github.com/syashwanth3110/first-node-mcp-server.git
npm install -y
Running Locally
You can run the MCP server locally by piping JSON-RPC requests to it:
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "add", "arguments": {"a": 5, "b": 3}}}' | node mcp.js
This will call the add tool with arguments a=5 and b=3, which should return 8.
Configuring as an MCP Server
To use this server with an MCP-compatible client (like an AI assistant), add the following configuration to your MCP config file:
{
"mcpServers": {
"demo-server-yash": {
"command": "/path/to/node",
"args": ["/path/to/first-node-mcp-server/mcp.js"],
"env": {
"NODE_OPTIONS": "--no-deprecation"
}
}
}
}
Replace /path/to/node with your Node.js executable path, and /path/to/first-node-mcp-server/mcp.js with the absolute path to your mcp.js file.
Example configuration:
{
"mcpServers": {
"demo-server-yash": {
"command": "/opt/homebrew/opt/node@18/bin/node",
"args": ["/Users/syashwanth/Source/first-node-mcp-server/mcp.js"],
"env": {
"NODE_OPTIONS": "--no-deprecation"
}
}
}
}
Available Tools
Add Tool
Adds two numbers together.
- Tool Name:
add - Input Parameters:
a: First number (required)b: Second number (required)
- Output: Sum of the two numbers
License
MIT
Contributing
Feel free to submit issues and pull requests.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.