mcp-server-express-maxbin
v0.1.0
Published
A Model Context Protocol server
Readme
mcp-server-express MCP Server
A Model Context Protocol server
This is a TypeScript-based MCP server that implements a simple notes system. It demonstrates core MCP concepts by providing:
- Resources representing text notes with URIs and metadata
- Tools for creating new notes
- Prompts for generating summaries of notes
Features
Tools
query_express- Query express by num- 调快递100查询快递接口 https://api.kuaidi100.com/manager/v2/home
Development
Install dependencies:
npm installBuild the server:
npm run buildFor development with auto-rebuild:
npm run watchInstallation
To use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-server-express": {
"command": "node",
"args": [
"/Users/shouqianba/Documents/AICode/mcp-server-express/build/index.js",
"--auth_key=123456",
"--customer=123456",
],
"env": {}
}
}
}Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspectorThe Inspector will provide a URL to access debugging tools in your browser.
