Skip to main content
Glama
Zaby2

My Tools MCP Server

by Zaby2

MCP Server - My Tools

A Model Context Protocol (MCP) server that provides utility tools for file operations and calculations.

Features

  • read_file - Reads file content from a specified path

  • calculator - Evaluates mathematical expressions

Related MCP server: Calculator MCP

Installation

npm install

Usage

Start the MCP server:

node mcp-server.js

The server communicates via stdio transport using the Model Context Protocol.

Configuration

Adding to settings.json

To use this MCP server with VS Code (or compatible editors), add the following configuration to your settings.json:

{
  "mcp": {
    "servers": {
      "my-tools": {
        "command": "node",
        "args": ["/Users/bogdansitov/mcp/mcp-server.js"],
        "disabled": false
      }
    }
  }
}

Note: Update the path to mcp-server.js if the server is located elsewhere on your system.

Available Tools

read_file

Reads the content of a file at the given path.

Input:

  • path (string) - The absolute path to the file

Output:

  • File content as string

calculator

Evaluates a mathematical expression.

Input:

  • expression (string) - The mathematical expression to evaluate

Output:

  • Result of the expression

Dependencies

License

ISC

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides basic arithmetic operations and advanced mathematical functions through the Model Context Protocol (MCP), with features like calculation history tracking and expression evaluation.
    1
    -
  • A
    license
    B
    quality
    D
    maintenance
    Provides mathematical computation capabilities including basic arithmetic operations (add, subtract, multiply, divide), advanced functions (square root, factorial, logarithm), and trigonometric functions (sin, cos, tan) through the Model Context Protocol.
    5
    MIT
  • F
    license
    C
    quality
    D
    maintenance
    A Model Context Protocol server that provides tools for mathematical calculations and directory listing, alongside prompt templates for code reviews and explanations. It enables file system access and resource reading through stdio transport.
    2
    -