Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A small MCP server for course experiments that provides tools to read recent commits from public GitHub repositories.

README.md

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 example JetBrains
  • repo — GitHub repository name, for example kotlin
  • limit — number of commits to return, from 1 to 10

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 example BTCUSDT
  • intervalSeconds — collection interval in seconds, from 10 to 3600

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 example JetBrains
  • repo — GitHub repository name, for example kotlin
  • limit — number of commits to fetch, from 1 to 20

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 title
  • sourceText — 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 name
  • content — 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

Storage

Price watch data is stored locally in:

storage/price-watch-state.json

Pipeline 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 install

Start development server:

npm run dev

Build project:

npm run build

Start compiled version:

npm start

By default the server runs on port 3000.

Local MCP endpoint:

http://localhost:3000/mcp

Test with MCP Inspector

Start the server:

npm run dev

Run MCP Inspector:

npx @modelcontextprotocol/inspector

Use the following settings:

Transport Type: Streamable HTTP
URL: http://localhost:3000/mcp

Then 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 setInterval scheduler and JSON file storage;
  • locally, scheduled jobs work while the Node.js process is running;
  • summarize_text uses deterministic text processing, not an LLM.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.