Node.js MCP Server
This Node.js MCP Server provides two distinct sets of capabilities:
Core Development Tools (from documentation):
Context Management: Read and update project documentation (
README.md) using themdtool withread_allandupdate_allactionsTest Management: Create, update, and run tests through the
testtool, which writes test code, executesnpm test, and reports results to test.mdBuild & Deployment: Run projects in development (
dev) or production (prod) mode using thedeploytoolPath Flexibility: All tools support optional absolute path arguments for project root directory specification
Utility Tools (actual implementation):
Arithmetic Calculations: Perform basic operations (add, subtract, multiply, divide) on two numbers using the
calculatetoolSystem Information: Retrieve system information using the
get_system_infotool
Note: There is a discrepancy between the documented tools (md, test, deploy) and the actually implemented tools (calculate, get_system_info). Both tools execute synchronously only. The server can be configured for use with Claude/Anthropic MCP clients through configuration files.
Provides tools for running and managing project test suites via the npm CLI, including writing test files, executing npm test, and capturing output.
Click on "Install 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., "@Node.js MCP Servercalculate 15 * 3 + 7"
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.
MAIN ASPECTS
The ai is not human, we should simplify it and we can make it understand the prompt clearly for some regular tasks. Managing human behavior is not easy. We should not let the ai to behave like a human and to make the prompt processing difficult. We should let the ai to do its job and to make it understand the prompt clearly in regular cases. We must reduce the token usage. Otherwise it will be expensive.
Node.js MCP Server
A specialized MCP server focused on 3 Core Jobs for agentic workflows.
The 3 Jobs
1. Context Management & Learning
The agent can manage the project's documentation and "learn" the entire context.
Tool:
mdActions:
read_all: ReadsREADME.mdfrom the specified path.update_all: Overwrites/updatesREADME.mdwith new content provided by the client.Arguments:
path(string, optional) - Absolute path to project root.content(string, required forupdate_all) - The new content forREADME.md.
2. Test Management
The agent can manage the project's tests in a unified workflow.
Tool:
testAction:
testFunctionality:
Writes the provided test
codetotest_path.Runs the project's test suite (
npm test).Reports output and errors to
test.md.
Arguments:
path(string, optional) - Absolute path to project root.test_path(string, required) - Relative path to the test file (e.g.,tests/api.test.js).code(string, required) - Content of the test file.
3. Build & Run
Tool:
deployActions:
dev: Runs the project in development mode.prod: Builds the project and runs it.Arguments:
path(string, optional) - Absolute path to project root.
Related MCP server: MCP Playground Server
Installation & Usage
1. Build the Server
cd /home/mc/Desktop/mcpserver
npm install
npm run build2. Configuration (Claude / Antigravity)
Add to your MCP configuration file:
Location: ~/.config/Claude/claude_desktop_config.json (Linux)
{
"mcpServers": {
"job-server": {
"command": "node",
"args": ["path/to/mcpserver/dist/index.js"]
}
}
}{
"mcpServers": {
"my-job-server": {
"command": "node",
"args": ["path/to/mcpserver/dist/index.js"]
}
}
}3. Usage Examples
Manage Tests
To create a test, update it, or simply run existing tests (by re-submitting the code), use the test tool.
{
"name": "test",
"arguments": {
"action": "test",
"path": "path/to/ServiceApp",
"test_path": "tests/login.test.js",
"code": "describe('Login', () => { ... });"
}
}The server will:
Save
tests/login.test.js.Run
npm test.Report full results to
test.md.
Troubleshooting
Path Issues: Always provide the
pathargument.npm test: The
testaction requires a validtestscript in the project'spackage.json.
Available Tools
2 toolscalculateD
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The operation to perform | |
| a | Yes | The first number | |
| b | Yes | The second number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Tool has no description.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Tool has no description.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has no description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Tool has no description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Tool has no description.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Tool has no description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_system_infoD
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Tool has no description.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Tool has no description.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has no description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Tool has no description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Tool has no description.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Tool has no description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The two tools have clearly distinct purposes: 'calculate' likely performs mathematical or computational operations, while 'get_system_info' retrieves system-related data. There is no overlap or ambiguity between these functions, making them easy for an agent to differentiate.
The naming is inconsistent: 'calculate' uses a bare verb with no noun, while 'get_system_info' follows a verb_noun pattern. This mixing of conventions lacks a predictable pattern, though the names are still readable.
With only 2 tools, this server feels too thin for a general-purpose Node.js domain, which typically involves many operations like file handling, networking, or process management. The count is insufficient to cover the implied scope effectively.
The tool surface is severely incomplete for a Node.js server, lacking basic operations such as file I/O, module management, or process control. The two tools provided do not offer meaningful coverage, leaving significant gaps that will cause agent failures.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
This MCP server enables users to perform scientific computations regarding linear algebra and vect…
Educational MCP server with 17 math/stats tools, visualizations, and persistent workspace
A simple MCP server built with FastMCP and python
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA basic educational MCP server that provides simple tools for mathematical calculations, text manipulation, and time retrieval. Designed for learning MCP implementation patterns and development purposes.
- FlicenseNot gradedqualityDmaintenanceA simple educational MCP server providing basic math operations, string manipulation, and greeting functionality. Demonstrates how to implement MCP tools for learning purposes.
- AlicenseNot gradedqualityCmaintenanceA simple MCP server that provides calculator tools for basic arithmetic operations with zero-division protection.74ISC
- FlicenseNot gradedqualityDmaintenanceA simple MCP server that provides basic calculator operations such as add, subtract, multiply, and divide.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mustafa-can/mcpserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server