Skip to main content
Glama
nik-red

MCP Python Server - Streamable HTTP

by nik-red

MCP Python Server - Streamable HTTP

A simple Model Context Protocol (MCP) server built using FastMCP that exposes multiple tools over Streamable HTTP. This project demonstrates how AI assistants (such as Claude Desktop, LangChain Agents, Cursor, or any MCP-compatible client) can discover and execute Python functions as tools.


Features

  • Streamable HTTP transport

  • Automatic tool discovery

  • Execute Bash commands

  • Execute Python code

  • Execute Python files

  • Read and write files

  • Search files using glob patterns

  • Search text inside files

  • Create and delete folders


Related MCP server: aily-local-file-mcp

Project Structure

.
├── server.py          # Starts the MCP HTTP Server
├── tools.py           # Tool definitions exposed to MCP clients
├── requirements.txt
├── README.md
└── .gitignore

Available Tools

bash(command: str)

Executes a Bash/Command Prompt command and returns the output.

Example:

bash("dir")

python_code(code: str)

Executes Python code directly.

Example:

python_code("print('Hello MCP')")

python_file(file: str)

Runs a Python script.

Example:

python_file("sample.py")

glob(pattern: str)

Returns files matching a pattern.

Example:

glob("*.py")

grep(pattern: str, file: str)

Searches for matching text inside a file.

Example:

grep("TODO", "notes.txt")

read_file(file: str)

Reads the contents of a file.


write_file(file: str, content: str)

Creates or overwrites a file with the provided content.


create_folder(folder: str)

Creates a directory.


delete_folder(folder: str)

Deletes an existing directory.


Installation

Clone the repository:

git clone https://github.com/nik-red/MCP.git
cd MCP

Create a virtual environment:

Windows

python -m venv .venv
.venv\Scripts\activate

Linux / macOS

python3 -m venv .venv
source .venv/bin/activate

Install dependencies:

pip install -r requirements.txt

Running the Server

Start the MCP server:

python server.py

The server starts using Streamable HTTP on:

http://localhost:8050

Testing with MCP Inspector

Install MCP Inspector (if not already installed):

npx @modelcontextprotocol/inspector

Connect to:

http://localhost:8050

You can:

  • Discover available tools

  • Execute tools interactively

  • Inspect requests and responses

  • Verify tool metadata


How It Works

  1. The server starts and registers all functions decorated with @mcp.tool().

  2. An MCP client connects using the Streamable HTTP protocol.

  3. The client requests the list of available tools.

  4. FastMCP automatically generates tool metadata from the Python function signatures and docstrings.

  5. When a tool is invoked, FastMCP executes the corresponding Python function and returns the result to the client.


Technologies Used

  • Python 3.x

  • FastMCP

  • Model Context Protocol (MCP)

  • Streamable HTTP


Learning Objectives

This project demonstrates:

  • Building an MCP Server

  • Creating custom MCP tools

  • Tool discovery

  • Streamable HTTP transport

  • Function execution through MCP

  • Integrating AI agents with Python applications


Future Improvements

  • Add authentication

  • Restrict dangerous shell commands

  • Add logging

  • Improve error handling

  • Deploy as a Databricks App or Docker container

  • Add Databricks, Azure, and SQL tools

  • Package and publish reusable tools to PyPI

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

0Releases (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 Connectors

  • Operate Linux, macOS and Windows from your LLM. Every action runs through an auditable allowlist.

  • Build, validate, deploy — HTTP APIs, cron jobs, webhooks and MCP tools — from your AI client.

  • Exposes FEDLIN's public security scanners as agent-callable tools over Streamable HTTP.

  • AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.

View all MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Exposes local file system operations to AI assistants via Streamable HTTP with security features like auth, path whitelisting, and audit logging.
    347
    2
    MIT
  • F
    license
    Not graded
    quality
    A
    maintenance
    Enables MCP-compatible AI clients to invoke CLI-driven agent tools over Streamable HTTP, including shell execution, file operations, patching, image viewing, web search, and nested agent tasks, with permission modes and real-time progress streaming.

View all related MCP servers

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/nik-red/MCP'

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