https://github.com/alirezawmoradi/github-follower-manager-mcp
Tool designed to help you manage your GitHub followers using the Model Context Protocol (MCP) pattern.
https://github.com/alirezawmoradi/github-follower-manager-mcp
ai github github-api mcp mcp-server nodejs typescript
Last synced: 7 months ago
JSON representation
Tool designed to help you manage your GitHub followers using the Model Context Protocol (MCP) pattern.
- Host: GitHub
- URL: https://github.com/alirezawmoradi/github-follower-manager-mcp
- Owner: Alirezawmoradi
- License: mit
- Created: 2025-04-11T15:59:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-15T18:37:25.000Z (9 months ago)
- Last Synced: 2025-06-19T01:42:44.821Z (7 months ago)
- Topics: ai, github, github-api, mcp, mcp-server, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# GitHub Follow Manager
## Description
GitHub Follow Manager is a tool designed to help you manage your GitHub followers using the Model Context Protocol (MCP) pattern. It allows you to check who follows you on GitHub, unfollow users who don't follow you back, and analyze follow relationships.
## Features
- β
Authenticates with GitHub using a personal access token
- π€ Retrieves the current authenticated user
- π Lists users you follow who don't follow you back
- π» Allows bulk unfollowing
- π Generates a detailed report of all follow relationships
## β¨ Why This Project?
This repo is perfect for:
- Developers who want to clean up their GitHub following list
- LLM enthusiasts exploring Claude Desktop + MCP
- Automation fans who want **natural language control** of their tools
## Prerequisites
- Node.js (version 18 or higher)
- npm (Node Package Manager)
- A GitHub personal access token with appropriate scopes
## π Getting Started
### 1. Clone the Repo
```bash
git clone
cd follower-manager-mcp
```
### 2. Install the dependencies:
```bash
npm install
```
### 3. Create a `.env` file in the root directory and add your GitHub personal access token:
```
GITHUB_TOKEN= your_github_token_here
```
### 4. Build the project:
```bash
npm run build
```
### 5. Configure mcpServers
```bash
{
"mcpServers": {
"github-follow-manager": {
"command": "node",
"args": [
"C:\\Path\\To\\github-follow-manager-mcp\\dist\\mcp-server.js"
],
"env": {
"GITHUB_TOKEN": "your_personal_access_token_here"
}
}
}
}
```
##### Make sure your GitHub token has appropriate scopes such as: read:user, user:follow.
## π§ͺ Demo Prompt for Claude
Once everything is configured and Claude Desktop is running, try prompts like:
- "Initialize the GitHub follower manager."
- "Who am I following that doesnβt follow me back?"
- "Unfollow all users who donβt follow me back."
Claude will automatically use the MCP server to perform these actions!
### π License
This project is open-source and available under the [MIT license](https://opensource.org/licenses/MIT).
### π£ Help this repo grow
If you found this useful, please consider starring β the repo to help more people discover it.
### π¬ Contact
Developed by [Alireza Moradi]()
Reach out via [GitHub Issues](https://github.com/Alirezawmoradi/Github-RepoSweep/issues) for questions or suggestions.
## π Credits
- [Claude Desktop](https://claude.ai/)
- [Model Context Protocol](https://github.com/modelcontextprotocol)
- [GitHub REST API](https://docs.github.com/en/rest?apiVersion=2022-11-28)
### π Keywords:
**GitHub CLI** Β· **AI Assistant** Β· **Claude Desktop** Β· **MCP** Β· **GitHub API** Β· **TypeScript** Β· **Productivity** Β· **Automation** Β· **GitHub Bot**