Pankhur/public-mcp
3.1
If you are the rightful owner of public-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Model Context Protocol (MCP) server implementation designed for easy installation and usage.
Public MCP Server
A Model Context Protocol (MCP) server implementation.
Installation
Using uvx (Recommended)
The easiest way to install and run this MCP server is using uvx
:
{
"public-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/Pankhur/public-mcp.git",
"mcp-server"
]
}
}
You can add this configuration to your project or Claude Desktop config to use this MCP server.
Manual Installation
-
Clone the repository
git clone https://github.com/Pankhur/public-mcp.git cd public-mcp
-
Install dependencies
pip install -e .
Alternatively, you can install dependencies using
uv
:pip install uv uv pip install -e .
Usage
After installation, you can run the server with:
python -m mcpserver
Development
To contribute to this project:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request