Skip to main content
Glama
sharmax-vikas

MCP_testing

MCP Testing Project

This project demonstrates a simple client-server setup using the fastmcp library for Model Context Protocol (MCP) communication. It includes:

  • A server that exposes tools and resources via MCP (see server/server.py and server/mcp_blog_server.py)

  • A client that connects to the server, lists available tools, and calls a sample tool (see client/client.py)

Advanced Example: Blog MCP Server

The file server/mcp_blog_server.py demonstrates advanced MCP server features:

  • Dynamic Resources: Exposes blog posts, single post, and category-based resources with caching and templates.

  • Complex Tools: Tools for creating posts, publishing workflows, batch tag updates, and searching posts with parameter validation and caching.

  • Caching: Uses cachetools.TTLCache for efficient response caching.

  • Tool Chaining: Implements multi-step workflows (e.g., publishing a post and notifying subscribers).

  • Asynchronous Operations: Batch operations and async processing for scalability.

To run the advanced blog server:

uv run fastmcp run server/mcp_blog_server.py

You can then connect with a compatible MCP client to interact with the blog tools and resources.

Related MCP server: FastMCP Training Course Server

Project Structure

MCP_testing/
│
├── main.py
├── pyproject.toml
├── README.md
├── server.json
├── client/
│   └── client.py
├── server/
│   ├── server.py
│   └── mcp_blog_server.py
└── ...

Requirements

  • Python 3.8+

  • fastmcp

  • uv (for fast Python package management and running)

Install dependencies:

uv pip install fastmcp

Running the Server

From the project root, run:

uv run fastmcp run server/server.py

This will start the MCP server. Make sure the server is running before starting the client.

Running the Client

The client reads the MCP server URL from server.json and connects to it, listing available tools and calling the get_weather tool as an example.

From the client directory, run:

uv run client.py

Configuration

The server.json file should look like this:

{
  "mcpServers": {
    "weather-mcp": {
      "url": "http://127.0.0.1:8000/sse",
      "transport": "sse"
    }
  }
}

Example Output

✅ Connected to MCP server!
  • get_weather: Get the weather for a city
Result: { ... }

Notes

  • The client and server are both written in Python and use the fastmcp library for communication.

  • You can add more tools to the server and call them from the client as needed.


For more information, see the fastmcp documentation or the code in client/client.py, server/server.py, and server/mcp_blog_server.py.

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    A demonstration server showing MCP implementation in Python with resource handling, tool operations, and reusable prompts for a simple user/post system with local database.
    Last updated
  • F
    license
    -
    quality
    D
    maintenance
    An educational MCP server example built with FastMCP that demonstrates how to expose tools, resources, and prompts to AI clients. Provides a learning foundation for building MCP servers with Python and integrating them with AI applications like IDEs and chatbots.
    Last updated
  • F
    license
    -
    quality
    D
    maintenance
    A demonstration MCP server that runs over HTTP with streamable transport, providing a simple greeting tool for testing MCP client-server communication. Built with FastMCP framework for educational purposes in learning MCP server development.
    Last updated

View all related MCP servers

Related MCP Connectors

  • FastMCP server for posting formatted content to X (Twitter) — Tollbooth-monetized, DPYC-native

  • MCP (Model Context Protocol) server for Appwrite

  • Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sharmax-vikas/MCP_testing'

If you have feedback or need assistance with the MCP directory API, please join our Discord server