Simple MCP Server
A TypeScript starter template for building MCP servers with example tools (echo, math operations, time, flight status) and resources (server info, greetings). Provides a modular architecture for easily extending with custom tools and resources.
README
Simple MCP Server
A simple Model Context Protocol (MCP) server implementation using TypeScript and the official MCP SDK.
Features
This MCP server provides:
Tools
- echo: Echoes back the input text
- add_numbers: Adds two numbers together
- get_current_time: Returns the current date and time
- get_flight_status: Get real-time flight status using flight number (supports both mock and real API data)
Resources
- info://server: Server information and capabilities
- greeting://hello: A simple greeting message
Installation
- Install dependencies:
npm install
- Build the project:
npm run build
Usage
Development Mode
Run the server in development mode with hot reloading:
npm run dev
Production Mode
Build and run the compiled server:
npm run build
npm start
Watch Mode
Build and watch for changes:
npm run watch
MCP Client Integration
To use this server with an MCP client, you'll need to configure the client to connect to this server. The server uses stdio transport, so it can be launched as a subprocess.
Example configuration for MCP clients:
{
"mcpServers": {
"simple-server": {
"command": "node",
"args": ["path/to/dist/index.js"]
}
}
}
Project Structure
├── examples/ # Example implementations
│ ├── resources/
│ │ └── example-resource.ts # Example resource implementations
│ └── tools/
│ └── example-tool.ts # Example tool implementations
├── src/ # Source code
│ ├── handlers/
│ │ └── index.ts # MCP request handlers
│ ├── resources/
│ │ ├── index.ts # Resource implementations
│ │ └── registry.ts # Resource registry
│ ├── tools/
│ │ ├── index.ts # Tool implementations
│ │ └── registry.ts # Tool registry
│ ├── types/
│ │ └── index.ts # TypeScript type definitions
│ ├── utils/
│ │ └── config.ts # Configuration and utilities
│ ├── index.ts # Main entry point
│ └── server.ts # Core server implementation
├── dist/ # Compiled JavaScript (generated)
├── package.json # Node.js dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── test.js # Basic test script
├── test-comprehensive.js # Comprehensive test script
└── README.md # This file
Modular Architecture
The server is built with a modular architecture that makes it easy to extend:
- Tools: Each tool is a separate class implementing the
ToolHandlerinterface - Resources: Each resource is a separate class implementing the
ResourceHandlerinterface - Registries: Central registries manage all tools and resources
- Handlers: Request handlers manage MCP protocol communication
- Types: Shared TypeScript interfaces for type safety
Development
Adding New Tools
- Create a new tool class implementing
ToolHandlerinsrc/tools/ - Add the tool to the
ToolRegistryinsrc/tools/registry.ts - See
examples/tools/example-tool.tsfor a complete example
Adding New Resources
- Create a new resource class implementing
ResourceHandlerinsrc/resources/ - Add the resource to the
ResourceRegistryinsrc/resources/registry.ts - See
examples/resources/example-resource.tsfor complete examples
Flight Status Tool
The flight status tool provides real-time flight information:
Features:
- Real-time flight status (scheduled, active, landed, cancelled, delayed)
- Departure and arrival airport information
- Airline details
- Scheduled times
- International flight support
Usage:
# Test the flight status tool
node test-flight-status.js
API Integration: By default, the tool uses mock data. To get real flight data:
- Sign up for a free API key at AviationStack
- Set the environment variable:
AVIATIONSTACK_API_KEY=your_api_key - Rebuild and restart the server
Testing
Run the test scripts to verify functionality:
# Basic test
node test.js
# Comprehensive test with all features
node test-comprehensive.js
# Test flight status tool specifically
node test-flight-status.js
Git Configuration
The project includes a comprehensive .gitignore file that excludes:
- Environment files (
.env*) containing API keys - Compiled output (
dist/) - Dependencies (
node_modules/) - IDE/editor files
- OS-specific files
- Logs and temporary files
Important Security Note: API keys and secrets are automatically excluded from git tracking.
See GITIGNORE_INFO.md for detailed information about ignored files.
MCP Protocol
This server implements the Model Context Protocol (MCP) which allows AI assistants to securely access external tools and data sources. The server communicates via JSON-RPC over stdio.
For more information about MCP, visit: https://modelcontextprotocol.io/
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。