MCP TypeScript Tools Server
@Albo3
关于 MCP TypeScript Tools Server
暂无概览
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-server-albo3": {
"command": "node",
"args": [
"dist/index.js"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP TypeScript Tools Server?
A Model Context Protocol (MCP) server implemented in TypeScript that provides utility tools (calculator, datetime, note-taking) for LLMs like Claude. It is designed for developers using Claude for Desktop or Cursor to extend LLM capabilities with custom tools.
How to use MCP TypeScript Tools Server?
Install Node.js v16+, clone the repo, run npm install and npm run build. Then configure the server in Claude for Desktop's claude_desktop_config.json or in Cursor's MCP settings using the command node ABSOLUTE_PATH_TO_YOUR_PROJECT/dist/index.js. Restart the application to access tools.
Key features of MCP TypeScript Tools Server
- Basic calculator tool for mathematical operations
- Current date/time tool in short or long format
- Save, retrieve, and list text notes
- Compatible with Claude for Desktop and Cursor
- Extensible architecture for adding new tools
Use cases of MCP TypeScript Tools Server
- Perform quick calculations within an LLM conversation
- Get current date and time in a formatted string
- Store and recall short text notes during a session
- Prototype and test custom MCP tools for LLMs
FAQ from MCP TypeScript Tools Server
How do I set up the server with Claude for Desktop?
Open the Claude desktop config file at %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS), add the MCP server configuration with the command pointing to the built dist/index.js, then restart Claude.
How do I add a new tool to the server?
Create a new file in src/tools/, use the provided template with Zod schema, export it in src/tools/index.ts, and register it in src/index.ts. Rebuild the project.
What are the prerequisites to run the server?
Node.js v16 or higher and npm. For using the tools, Claude for Desktop or Cursor is required.
How can I troubleshoot if tools are not appearing?
Check the logs at %APPDATA%\Claude\logs\mcp*.log (Windows) or ~/Library/Logs/Claude/mcp*.log (macOS). Verify the path in the config is absolute and correct, ensure the server is built, and restart the application.
What transport does the server use?
The server uses stdio transport, as configured with "command": "node" and the path to the built JavaScript file.
常见问题
How do I set up the server with Claude for Desktop?
Open the Claude desktop config file at `%APPDATA%\Claude\claude_desktop_config.json` (Windows) or `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS), add the MCP server configuration with the command pointing to the built `dist/index.js`, then restart Claude.
How do I add a new tool to the server?
Create a new file in `src/tools/`, use the provided template with Zod schema, export it in `src/tools/index.ts`, and register it in `src/index.ts`. Rebuild the project.
What are the prerequisites to run the server?
Node.js v16 or higher and npm. For using the tools, Claude for Desktop or Cursor is required.
How can I troubleshoot if tools are not appearing?
Check the logs at `%APPDATA%\Claude\logs\mcp*.log` (Windows) or `~/Library/Logs/Claude/mcp*.log` (macOS). Verify the path in the config is absolute and correct, ensure the server is built, and restart the application.
What transport does the server use?
The server uses stdio transport, as configured with `"command": "node"` and the path to the built JavaScript file.
基本信息
其他 分类下的更多 MCP 服务器
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
Mobile Mcp
mobile-nextModel Context Protocol Server for Mobile Automation and Scraping (iOS, Android, Emulators, Simulators and Real Devices)
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
评论