sumitvairagar/mcp-server-starter
If you are the rightful owner of mcp-server-starter 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 simple Model Context Protocol (MCP) server implementation using TypeScript and the official MCP SDK.
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
ToolHandler
interface - Resources: Each resource is a separate class implementing the
ResourceHandler
interface - 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
ToolHandler
insrc/tools/
- Add the tool to the
ToolRegistry
insrc/tools/registry.ts
- See
examples/tools/example-tool.ts
for a complete example
Adding New Resources
- Create a new resource class implementing
ResourceHandler
insrc/resources/
- Add the resource to the
ResourceRegistry
insrc/resources/registry.ts
- See
examples/resources/example-resource.ts
for 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/