GitHub Showcase
v1.0.0GitHub activity, repositories, and contributions showcase
githubcodedevelopmentversion-control
Server Information
- Server ID
- github
- Endpoint URL
- https://bookchaowalit-github-frontend.vercel.app
- Author
- bookchaowalit
- Available Tools
- 4 tools
About
A showcase of GitHub activity including repositories, commits, programming languages, and pull requests. Uses the GitHub API to fetch real-time data. ## Features - Repository listing with details - Recent commit activity - Programming language breakdown - Pull request history
Available Tools
github_get_repos
Get GitHub repositories
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number"
}
}
}github_get_commits
Get recent commits
Input Schema
{
"type": "object",
"properties": {
"repo": {
"type": "string"
}
}
}github_get_languages
Get programming languages used
Input Schema
{
"type": "object",
"properties": {}
}github_get_pull_requests
Get pull requests
Input Schema
{
"type": "object",
"properties": {
"state": {
"type": "string",
"enum": [
"open",
"closed",
"all"
]
}
}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"github": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit-github-frontend.vercel.app"
}
}
}
}