MCP server by MarvelNwachukwu
MCP Server Starter Template
A minimal starter template for building Model Context Protocol (MCP) servers using TypeScript and FastMCP.
MCP • FastMCP • TypeScript
A minimal starter template for building Model Context Protocol (MCP) servers using TypeScript and FastMCP.
Features
- Basic project structure with
src/lib,src/services,src/tools. - TypeScript setup (compiles to
dist/). fastmcpfor MCP server implementation.- A weather service example demonstrating:
- Proper folder structure (lib, services, tools)
- API integration with error handling
- Parameter validation using Zod
- Separation of concerns
- GitHub Actions workflows for CI and Release (manual trigger by default).
Getting Started
The easiest way to create a new MCP server project using this template is with the ADK CLI:
npm install -g @iqai/adk-cli # if you haven't already
adk new --template mcp-starter my-mcp-server
cd my-mcp-server
pnpm install
You can also use this template directly by copying the files, but using the CLI is recommended for best results.
Running the Server
Default (Production/Development) Route
To run your MCP server in production or for standard development, use:
pnpm dev
Fast Iteration & Agent Setup (ADK CLI)
For rapid prototyping, interactive testing, or initial agent setup, use the ADK CLI:
adk run # Interactive CLI chat with your agents
adk web # Web interface for easy testing and demonstration
-
Configure environment variables: For the weather service example, you'll need an OpenWeather API key:
# Create a .env file (add to .gitignore) echo "OPENWEATHER_API_KEY=your_api_key_here" > .envGet an API key from OpenWeather.
-
Initial Commit: It's a good idea to make an initial commit at this stage.
git add . git commit -m "feat: initial project setup from template" -
Develop your server:
- Add your custom tools in the
src/tools/directory. - Implement logic in
src/lib/andsrc/services/. - Register tools in
src/index.ts.
- Add your custom tools in the
Example Weather Tool
This template includes a weather service example that demonstrates:
-
HTTP Utilities (
src/lib/http.ts):- Type-safe HTTP requests with Zod validation
- Error handling
-
Configuration (
src/lib/config.ts):- Environment variable management
- Service configuration
-
Weather Service (
src/services/weather-service.ts):- API integration
- Data transformation
- Proper error propagation
-
Weather Tool (
src/tools/weather.ts):- Parameter validation with Zod
- User-friendly output formatting
- Error handling and user guidance
To use the weather tool:
# Set your OpenWeather API key
export OPENWEATHER_API_KEY=your_api_key_here
# Run the server
pnpm run start
# Connect with an MCP client and use the GET_WEATHER tool
# with parameter: { "city": "London" }
Release Management (Changesets)
This template is ready for release management using Changesets.
-
Install Changesets CLI (if not already in devDependencies): The template
package.jsonshould include@changesets/cli. If not:pnpm add -D @changesets/cli -
Initialize Changesets: This command will create a
.changesetdirectory with some configuration files.pnpm changeset init # or npx changeset initCommit the generated
.changesetdirectory and its contents. -
Adding Changesets During Development: When you make a change that should result in a version bump (fix, feature, breaking change):
pnpm changeset add # or npx changeset addFollow the prompts. This will create a markdown file in the
.changesetdirectory describing the change. Commit this changeset file along with your code changes. -
Publishing a Release: The GitHub Actions workflow
release.yml(inmcp-server-starter/.github/workflows/) is set up for this. When you are ready to release:- Ensure all feature PRs with their changeset files are merged to
main. - Important: Before publishing, ensure your
package.jsonis complete. Add or update fields likekeywords,author,repository(e.g.,"repository": {"type": "git", "url": "https://github.com/YOUR_USERNAME/YOUR_REPO_NAME.git"}),bugs(e.g.,"bugs": {"url": "https://github.com/YOUR_USERNAME/YOUR_REPO_NAME/issues"}), andhomepage(e.g.,"homepage": "https://github.com/YOUR_USERNAME/YOUR_REPO_NAME#readme") for better discoverability and information on npm. - The
release.ymlworkflow (manually triggered by default in the template) will:- Run
changeset versionto consume changeset files, updatepackage.jsonversions, and updateCHANGELOG.md. It will push these to achangeset-release/mainbranch and open a "Version Packages" PR. - Merge the "Version Packages" PR.
- Upon merging, the workflow runs again on
main. This time, it will runpnpm run publish-packages(which should includechangeset publish) to publish to npm and create GitHub Releases/tags.
- Run
- To enable automatic release flow: Change
on: workflow_dispatchinrelease.ymltoon: push: branches: [main](or your release branch).
- Ensure all feature PRs with their changeset files are merged to
Available Scripts
pnpm run build: Compiles TypeScript to JavaScript indist/and makes the output executable.pnpm run dev: Runs the server in development mode usingtsx(hot-reloading for TypeScript).pnpm run start: Runs the built server (fromdist/) using Node.
Rapid Development Setup
For fast iteration during development, use the dev script with hot reload:
pnpm run dev
This runs tsx watch src/index.ts which automatically restarts the server when you make changes to your TypeScript files.
MCP Client Configuration for Development
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"weather-dev": {
"command": "/Users/marvelsmbp/Documents/OSS/my-mcp-server/node_modules/.bin/tsx",
"args": ["watch", "/Users/marvelsmbp/Documents/OSS/my-mcp-server/src/index.ts"],
"env": {
"OPENWEATHER_API_KEY": "your_api_key_here"
}
}
}
}
Claude Desktop: Add a development server entry with:
- Command:
/Users/marvelsmbp/Documents/OSS/my-mcp-server/node_modules/.bin/tsx - Args:
["watch", "/Users/marvelsmbp/Documents/OSS/my-mcp-server/src/index.ts"] - Env:
OPENWEATHER_API_KEY=your_api_key_here
Development Workflow
- Start development server:
pnpm run dev - Configure MCP clients to use the
tsx watchcommand (see configs above) - Edit TypeScript files in
src/- changes auto-restart the server - Test in Cursor/Claude - tools reflect changes immediately
- For production: Switch clients back to
node dist/index.jsand runpnpm run build
Testing Your MCP Server
Option 1: Direct MCP Server Usage Use the server directly with MCP clients or integrate it into other applications.
Option 2: With ADK CLI (For Client-Side Testing) While this template creates an MCP server, you can create a simple client to test it:
-
Install the ADK CLI globally:
npm install -g @iqai/adk-cli -
Create a simple agent that uses your MCP server (in a separate test directory):
# In a test directory, create an agents/agent.ts file that connects to your MCP server adk run # Test the integration adk web # Web interface for testing
This approach is useful for testing how your MCP server tools work within the ADK ecosystem.
Using the Server
After building (pnpm run build), you can run the server:
- Directly if linked or globally installed:
mcp-hello-server(or your customized bin name). - Via node:
node dist/index.js - Via
pnpm dlx(once published):pnpm dlx your-published-package-name