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 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
start_price_watch
Starts periodic price monitoring for a market symbol and stores snapshots in JSON
Input parameters:
symbol— market symbol, for exampleBTCUSDTintervalSeconds— collection interval in seconds, from10to3600
get_price_watch_summary
Returns an aggregated summary for collected price snapshots
Summary includes:
snapshots count
first and last price
min and max price
average price
absolute and percentage change
recent snapshots
stop_price_watch
Stops periodic price monitoring for a market symbol and removes stored watch state
search_recent_commits
Searches recent commits for a public GitHub repository
This tool is used as the first step of the MCP tool composition pipeline
Input parameters:
owner— GitHub repository owner, for exampleJetBrainsrepo— GitHub repository name, for examplekotlinlimit— number of commits to fetch, from1to20
summarize_text
Creates a short deterministic summary for provided text
This tool is used as the second step of the MCP tool composition pipeline
Input parameters:
title— summary titlesourceText— source text to summarize
save_note_to_file
Saves provided note content to a Markdown file
This tool is used as the third step of the MCP tool composition pipeline
Input parameters:
title— note title used for file namecontent— Markdown content to save
Saved notes are created in:
storage/notes/echo
Simple test tool that returns the input text back to the client
Used to verify that MCP tool calls work
Related MCP server: git-mcp
Storage
Price watch data is stored locally in:
storage/price-watch-state.jsonPipeline notes are stored locally in:
storage/notes/Runtime storage files are created automatically and are not committed to Git
Endpoints
GET /
Health-check endpoint
Example response:
{
"service": "mcp-tools-server",
"status": "ok",
"tools": [
"echo",
"get_recent_commits",
"start_price_watch",
"get_price_watch_summary",
"stop_price_watch",
"search_recent_commits",
"summarize_text",
"save_note_to_file"
]
}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 the required tool
Notes
Current limitations:
only public GitHub repositories are supported;
GitHub requests are unauthenticated;
unauthenticated GitHub API rate limits apply;
the price watcher uses an in-process
setIntervalscheduler and JSON file storage;locally, scheduled jobs work while the Node.js process is running;
summarize_textuses deterministic text processing, not an LLM.
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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