A collection of useful tools built with the Model Context Protocol (MCP) framework.
This repository contains a set of tools designed to interface with AI models using the Model Context Protocol. Each tool is designed to extend the capabilities of AI assistants by providing additional functionality through standardized interfaces.
A Go-based MCP server that provides a tool for fetching web content. The curl tool allows AI assistants to retrieve content from URLs when explicitly requested by users.
Features:
- Fetches web content via HTTP GET requests
- Sets appropriate user agent headers to avoid blocking
- Returns the full content of webpages as text
- Implements the MCP standard for seamless integration with AI assistants
A Python-based MCP server that helps with maintaining GitHub issues and pull requests, specifically for the zeromicro/go-zero project. It provides two main functionalities:
Features:
- Translation Mode: Translates Chinese content in issues/PRs to English while preserving the original text
- Answer Mode: Generates responses to issues/PRs on behalf of the repository maintainer, with technically accurate and helpful content
- Command-line interface for direct usage
- Implements the MCP standard for integration with AI assistants
# Navigate to the curl directory
cd curl
# Build and run the curl tool
go build
./curl
# Navigate to the github-issue-pr-maintainer directory
cd github-issue-pr-maintainer
# Run in translation mode
python main.py --issue_id 123 --mode translate
# Run in answer mode
python main.py --issue_id 123 --mode answer
# Run as an MCP server
python main.py
- Go 1.24+
- github.com/mark3labs/mcp-go v0.15.0
- Python 3.11+
- MCP Python library
- Click package
-
Clone the repository:
git clone https://github.com/kevwan/mcp-tools.git cd mcp-tools
-
For the Go tool:
cd curl go build
-
For the Python tool:
cd github-issue-pr-maintainer pip install -e .
See the LICENSE file for details.
Contributions are welcome! Feel free to submit issues or pull requests.
- This project uses the Model Context Protocol (MCP), a standard for AI tool interfaces.
- Special thanks to the creators of the MCP standard and its implementations.