Overview
UIThub MCP Server is a Model Context Protocol (MCP) server designed for interacting with the UIThub API, which allows users to fetch and analyze GitHub repository contents.
To use the UIThub MCP Server, run the command npx uithub-mcp init to initialize it, and then restart Claude to start using it.
- Retrieve repository contents with smart filtering options. - Specify file extensions to include or exclude. - Integrate with Claude Desktop for natural language exploration of repositories.
- Analyzing code from various GitHub repositories.
- Fetching specific file types from repositories for targeted analysis.
- Enhancing code discussions with natural language queries through Claude.
Add to your AI client
Use these steps to connect UIThub MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"uithub-mcp-janwilmake": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uithub-mcp-janwilmake"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"uithub-mcp-janwilmake": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uithub-mcp-janwilmake"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"uithub-mcp-janwilmake": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uithub-mcp-janwilmake"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"uithub-mcp-janwilmake": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uithub-mcp-janwilmake"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"uithub-mcp-janwilmake": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uithub-mcp-janwilmake"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"uithub-mcp-janwilmake": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uithub-mcp-janwilmake"
]
}
}
}FAQ
What is the purpose of the UIThub MCP Server?
It serves as a bridge to interact with the UIThub API for fetching and analyzing GitHub repository contents.
How do I install the UIThub MCP Server?
You can install it by running `npx uithub-mcp init` in your terminal.
Is there a license for the UIThub MCP Server?
Yes, it is licensed under the MIT License.