MCP-Server

Albo3/MCP-Server

3.1

If you are the rightful owner of MCP-Server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A Model Context Protocol (MCP) server implementation in TypeScript that provides various utility tools for LLMs like Claude.

The MCP TypeScript Tools Server is a versatile server implementation designed to enhance the functionality of language models like Claude. It offers a suite of utility tools including a calculator for basic mathematical operations, a DateTime tool for fetching current date and time in various formats, and a notes tool for managing text notes. The server is built with an extensible architecture, allowing developers to easily add new tools as needed. It is compatible with platforms like Claude for Desktop and Cursor, making it a flexible solution for integrating additional capabilities into language models.

Features

  • 🧮 Calculator tool for basic mathematical operations
  • 📅 DateTime tool for current date/time in different formats
  • 📝 Notes tool for saving and retrieving text notes
  • 🔌 Compatible with Claude for Desktop and Cursor
  • 🚀 Easy to extend with new tools

Usages

usage with Claude for Desktop

{
  "mcpServers": {
    "MCPllmContext": {
      "command": "node",
      "args": [
        "ABSOLUTE_PATH_TO_YOUR_PROJECT/dist/index.js"
      ]
    }
  }
}

usage with Cursor

{
  "type": "stdio",
  "name": "MCPllmContext",
  "command": "node ABSOLUTE_PATH_TO_YOUR_PROJECT/dist/index.js"
}