For Server Developers
Get started building your own server to use in Claude for Desktop and other clients.
In this tutorial, we'll build a simple MCP weather server and connect it to a host, Claude for Desktop. We'll start with a basic setup, and then progress to more complex use cases.
This is the same tutorial as the one here from the Model Context Protocol documentation. You can compare the two to see how Muppet simplifies the process of building and deploying MCPs.
What we'll be building
Many LLMs do not currently have the ability to fetch the forecast and severe weather alerts. Let's use MCP to solve that!
We'll build a server that exposes two tools: get-alerts
and get-forecast
. Then we'll connect the server to an MCP host (in this case, Claude for Desktop):
Core MCP Concepts
MCP servers can provide three main types of capabilities:
- Resources: File-like data that can be read by clients (like API responses or file contents)
- Tools: Functions that can be called by the LLM (with user approval)
- Prompts: Pre-written templates that help users accomplish specific tasks
This tutorial will primarily focus on tools.
Building our server
Let's get started with building our weather server! You can find the complete code for what we'll be building here.
-
Let's create and setup our project
-
Importing packages
Add these to the top of your
src/index.ts
-
Helper functions
Next, let's add our helper functions for querying and formatting the data from the National Weather Service API
-
Implementing tool execution
Now let's implement the tool execution logic. This is where we define how our tools will work.
-
Running the server
Finally, implement the main function to run the server
Now depending upon the client you can either build the server or run it directly in dev mode. For simplicity we will just build the server. The command for this will depend on the runtime you are using. For example, if you are using nodejs, you can follow these steps
Let's now test your server from an existing MCP host, Claude for Desktop.
Connection with Claude for Desktop
First, make sure you have Claude for Desktop installed. You can install the latest version here. If you already have Claude for Desktop, make sure it's updated to the latest version.
We'll need to configure Claude for Desktop for whichever MCP servers you want to use. To do this, open your Claude for Desktop App configuration at ~/Library/Application Support/Claude/claude_desktop_config.json
in a text editor. Make sure to create the file if it doesn't exist.
For example, if you have VS Code installed:
You'll then add your servers in the mcpServers
key. The MCP UI elements will only show up in Claude for Desktop if at least one server is properly configured.
In this case, we'll add our single weather server like so:
This tells Claude for Desktop:
- There's an MCP server named "weather"
- Launch it by running
node /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather/build/index.js
Save the file, and restart Claude for Desktop.
Test with commands
For this you can follow the instructions here to connect your server to the client.