Context Protocol (MCP)?
On account of the emergence of AI brokers and RAG-based functions in recent times, there’s an rising demand for customizing Massive Language Fashions (LLMs) by integrating with exterior assets (e.g. RAG-based techniques) and instruments (e.g. Agent-based techniques). This enhances LLMs’ present capabilities by incorporating exterior information and enabling autonomous activity execution.
Mannequin Context Protocol (MCP), first launched in November 2024 by Anthropic, has grown in reputation because it gives a extra coherent and constant solution to join LLMs with exterior instruments and assets, making it a compelling various to constructing customized API integrations for every use case. MCP is a standardized, open-source protocol that gives a constant interface that allow LLM to work together with numerous exterior instruments and assets, therefore enable finish customers to MCP server that has been encapsulated with enhanced functionalities. In comparison with present agentic system design patterns, MCP gives a number of key advantages:
- Enhance scalability and maintainability of the system by standardized integrations.
- Cut back duplicate growth effort since a single MCP server implementation works with a number of MCP shoppers.
- Keep away from vendor lock-in by offering flexibility to modify between LLM suppliers, for the reason that LLM is now not tightly coupled with the agentic system.
- Pace up the event course of considerably by enabling speedy creation of workable merchandise.
This text is purpose for guiding you thru the basics of Mannequin Context Protocol and the important elements of constructing an MCP server. We’ll apply these ideas by a sensible instance of constructing a MCP server that permits LLMs to summarize and visualize GitHub codebases by merely offering a URL like the instance under.
Consumer Enter:
https://github.com/aws-samples/aws-cdk-examples/blob/main/python/codepipeline-docker-build/Base.py
MCP Output:
Understanding MCP Parts

MCP Structure
MCP adopts a client-server structure the place the consumer is a tool or software that requests providers supplied by a centralized server. A useful analogy for the client-server relationship is that of a buyer and a restaurant. The shopper acts just like the client-side, sending requests by ordering from the menu, whereas the restaurant resembles the server, offering providers like dishes and seatings. The restaurant possesses ample assets to serve a number of prospects in a brief time frame, whereas prospects solely want to fret about receiving their orders.
MCP structure consists of three elements: MCP server, MCP consumer and MCP host. MCP server gives instruments and assets, exposing functionalities that AI fashions can leverage by structured requests. MCP host gives the runtime setting that manages communication between shoppers and servers, akin to Claude Desktop or IDEs with MCP-supported extensions. If we proceed with the identical customer-restaurant analogy above, MCP host could be thought-about as a restaurant administration system that coordinates communications between prospects (shoppers) and eating places, handles order taking and fee processing. MCP consumer is usually constructed into the host software permitting the customers to work together with the server by an interface. Nonetheless, there may be the flexibleness of growing customized MCP shoppers for specialised use circumstances and necessities, akin to constructing a easy AI net app utilizing Streamlit to help extra front-end functionalities.
MCP Server Parts
On this article, we’ll give attention to understanding MCP server and apply our information to construct a easy, customized MCP server. MCP server wraps round numerous APIs calls to the exterior instruments and assets, enabling the shoppers accessing these functionalities with out worrying in regards to the further setup. The MCP server helps incorporating three sorts of elements which aligns with three widespread LLM customization methods.
- Sources are information, information and paperwork that function the exterior information base to complement LLM’s present information. That is notably helpful in a RAG-based system.
- Instruments are executable capabilities and integrations with different packages to complement LLM’s motion area, for instance, carry out Google Search, create a Figma prototype and many others, which could be leveraged in an Agent-based system.
- Prompts are pre-defined instruction templates to information LLM’s output, e.g. response in an expert or informal tone. That is helpful within the system that advantages from immediate engineering methods.
If you’re to know extra about LLM customization methods, take a look at my earlier article and video on “6 Common LLM Customization Strategies Briefly Explained”.
Construct Your MCP Server in 6 Steps
We’ll use a easy instance to display methods to construct your first MCP server utilizing Python, which allows calling a customized visualize_code
device to show uncooked code information extracted from GitHub repositories into visible diagrams like the next instance.

For individuals with information science background studying to construct MCP servers, there are a number of software program growth ideas that could be unfamiliar however essential to grasp: asynchronous programming for dealing with asynchronous operations, consumer/server structure, and Python decorators for modifying operate conduct. We’ll clarify these ideas in additional element as we stroll by this sensible instance.
Step 1. Atmosphere Setup
- Bundle managers setup: MCP makes use of
uv
because the default package deal supervisor. For macOS and Linux system, set upuv
and execute it utilizingsh
with the shell command:

- Provoke a brand new working listing
/visible
, activate the digital setting, create the challenge construction to retailer the principle scriptvisible.py
:
# Create a brand new listing for our challenge
uv init visible
cd visible
# Create digital setting and activate it
uv venv
supply .venv/bin/activate
# Set up dependencies
uv add "mcp[cli]" httpx
# Create our server file
contact visible.py
- Set up required dependencies:
pip set up mcp httpx fastapi uvicorn
Additional Studying:
The official weblog put up from Anthropic “For Server Developers – Model Context Protocol” gives easy-to-follow information for organising the MCP server growth setting.
Step 2: Fundamental Server Setup
Within the visible.py
script, import the required libraries and provoke our MCP server occasion and outline a consumer agent for making HTTP requests. We’ll use FastMCP because the official Python MCP SDK.
from typing import Any
import httpx
from mcp.server.fastmcp import FastMCP
# Initialize FastMCP server
mcp = FastMCP("visual_code_server")
Step 3: Create Helper Capabilities
We’ll create a helper operate get_code()
to fetch code from the GitHub URL.
async def get_code(url: str) -> str:
"""
Fetch supply code from a GitHub URL.
Args:
url: GitHub URL of the code file
Returns:
str: Supply code content material or error message
"""
USER_AGENT = "visual-fastmcp/0.1"
headers = {
"Consumer-Agent": USER_AGENT,
"Settle for": "textual content/html"
}
async with httpx.AsyncClient() as consumer:
strive:
# Convert GitHub URL to uncooked content material URL
raw_url = url.exchange("github.com", "uncooked.githubusercontent.com")
.exchange("/blob/", "/")
response = await consumer.get(raw_url, headers=headers, timeout=30.0)
response.raise_for_status()
return response.textual content
besides Exception as e:
return f"Error fetching code: {str(e)}"
Let’s break down the get_code()
operate into a couple of elements.
Asynchronous Implementation
Asynchronous programming permits a number of operations to run concurrently, bettering effectivity by not blocking execution whereas ready for operations to finish. It’s sometimes used to deal with I/O operations effectively, akin to community request, consumer inputs and API calls. In distinction, synchronous operations, sometimes used for machine studying duties, are executed sequentially, with every operation blocking till completion earlier than shifting to the following activity. The next adjustments are made to outline this operate asynchronously:
- The operate is said with
async def
to permit dealing with a number of operations concurrently. - Use
async with
context supervisor andhttpx.AsyncClient()
for non-blocking HTTP requests. - Deal with asynchronous HTTP requests by including
await
key phrase toconsumer.get()
.
URL Processing
Configure Settle for header for HTML content material and set applicable Consumer-Agent to determine the consumer making the HTTP requests, i.e. visual-fastmcp/0.1
. Convert common GitHub URLs to uncooked file format.
Error Dealing with
Catch HTTP-specific exceptions (httpx.RequestError
, httpx.HTTPStatusError
) and catch different generic exception dealing with as fallback, then return descriptive error messages for debugging.
Additional Studying:
Step 4: Implement the MCP Server Instrument
Utilizing a couple of further traces of code, we will now create our essential MCP server device visualize_code()
.
@mcp.device()
async def visualize_code(url: str) -> str:
"""
Visualize the code extracted from a Github repository URL within the format of SVG code.
Args:
url: The GitHub repository URL
Returns:
SVG code that visualizes the code construction or hierarchy.
"""
code = await get_code(url)
if "error" in code.decrease():
return code
else:
return "n---n".be a part of(code)
return "n".be a part of(visualization)
Decorator
A Python Decorator is a particular operate that modifies or enhances the conduct of one other operate or methodology with out altering its unique code. FastMCP gives decorators that wrap round customized capabilities to combine them into the MCP server. For instance, we use @mcp.device()
to create an MCP server device by adorning the visualize_code
operate. Equally, we will use @mcp.useful resource()
for assets and @mcp.immediate()
for prompts.
Kind Trace and Docstring
The FastMCP class leverages Python kind hints and docstrings to mechanically enhancing device definitions, simplifying the creation and upkeep of MCP instruments. For our use case, we create device capabilities with kind hints visualize_code(url: str) -> str
, accepting enter parameter url
with string format and producing the output as a mixed string of all code extracted from the supply file. Then, add the docstring under to assist the LLM to grasp device utilization.
"""
Visualize the code extracted from a Github repository URL within the format of SVG code.
Args:
url: The GitHub repository URL
Returns:
SVG code that visualizes the code construction or hierarchy.
"""
Let’s evaluate how the MCP device capabilities with and with out docstring offered, by calling the MCP server by the Claude Desktop.
Mannequin output with out docstring – solely textual content abstract is generated

Mannequin output with docstring offered – each textual content abstract and diagram are generated

Additional studying:
Step 5: Configure the MCP Server
Add the principle execution block because the final step within the visible.py
script. Run the server domestically with easy I/O transport utilizing “stdio”. When working the code in your native machine, the MCP server is positioned in your native machine and listening for device requests from MCP shoppers. For manufacturing deployment, you possibly can configure completely different transport choices like “streamable-http” for web-based deployments.
if __name__ == "__main__":
mcp.run(transport='stdio')
Step 6. Use the MCP Server from Claude Desktop
We’ll display methods to use this MCP server by Claude Desktop, nevertheless, please notice that it permits connecting the server to completely different hosts (e.g. Cursor) by barely tweaking the configuration. Try “For Claude Desktop Users – Model Context Protocol” for Claude’s official information.
- Obtain the Claude Desktop
- Arrange config file for server settings in your native folder
~/Library/Software Assist/Claude/claude_desktop_config.json
(for MacOS) and replace<PARENT_FOLDER_ABSOLUTE_PATH>
to your personal working folder path.
{
"mcpServers": {
"visible": {
"command": "uv",
"args": [
"--directory",
"<PARENT_FOLDER_ABSOLUTE_PATH>/visual",
"run",
"visual.py"
]
}
}
}
- Run it utilizing command line
uv --directory <PARENT_FOLDER_ABSOLUTE_PATH>/visible run visible.py
- Launch (or restart) Claude Desktop and choose the “Search and instruments” then “visible”. You need to be capable of toggle on the
visualize_code
device we simply created.

- Attempt the visualization device by offering a GitHub URL, for instance:

Take-Dwelling Message
This text gives an outline of MCP structure (MCP consumer, host and server), with the first give attention to MCP server elements and functions. It guides by the method of constructing a customized MCP server that allows code-to-diagram from GitHub repositories.
Important steps for constructing a customized MCP server:
- Atmosphere Setup
- Fundamental Server Setup
- Create Helper Capabilities
- Implemente the MCP Instrument
- Configure the MCP Server
- Use the MCP Server from Claude Desktop
If you’re taken with additional exploration, potential instructions embody exploring distant MCP servers on cloud supplier, implementing safety features and sturdy error dealing with.
Extra Contents Like This