mcp-tools-server
Provides a tool to retrieve recent commits from a public GitHub repository, returning commit SHA, message, author, date, and URL.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-tools-serverget recent commits from JetBrains/kotlin"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-tools-server
Small remote MCP server for course experiments with Model Context Protocol
The project exposes custom MCP tools over Streamable HTTP
Current implementation contains a GitHub-related tool that reads recent commits from a public repository
Current tools
get_recent_commits
Returns recent commits from a public GitHub repository
Input parameters:
owner— GitHub repository owner, for exampleJetBrainsrepo— GitHub repository name, for examplekotlinlimit— number of commits to return, from1to10
Example input:
{
"owner": "JetBrains",
"repo": "kotlin",
"limit": 3
}The tool calls the public GitHub REST API and returns a short text summary with commit SHA, message, author, date and URL
echo
Simple test tool that returns the input text back to the client
Used to verify that MCP tool calls work
Related MCP server: GitHub MCP Server Plus
Endpoints
GET /
Health-check endpoint
Example response:
{
"service": "mcp-tools-server",
"status": "ok",
"tools": ["echo", "get_recent_commits"]
}POST /mcp
MCP endpoint for Streamable HTTP clients
Run locally
Install dependencies:
npm installStart development server:
npm run devBuild project:
npm run buildStart compiled version:
npm startBy default the server runs on port 3000
Local MCP endpoint:
http://localhost:3000/mcpTest with MCP Inspector
Start the server:
npm run devRun MCP Inspector:
npx @modelcontextprotocol/inspectorUse the following settings:
Transport Type: Streamable HTTP
URL: http://localhost:3000/mcpThen open the Tools tab, list available tools and run get_recent_commits
Notes
Current limitations:
only public GitHub repositories are supported;
GitHub requests are unauthenticated;
unauthenticated GitHub API rate limits apply;
the server currently exposes read-only tools only.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexadler9/mcp-tools-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server