mcp-tools-server

reckoning-machines/mcp-tools-server

3.1

If you are the rightful owner of mcp-tools-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

This document provides a structured summary of a Model Context Protocol (MCP) server implemented in Python, which offers tools for SQL querying, document searching, and note writing.

Tools
3
Resources
0
Prompts
0

MCP Tools Server (Python)

A minimal Model Context Protocol server that exposes three tools:

  • query_sql(sql) — read-only SQL over a demo SQLite DB.
  • search_docs(q) — search for q across ./data/docs/*.md and return matching lines.
  • write_note(name, text) — append a note to ./data/notes/<name>.md with size and path guardrails.

Run

python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
mkdir -p data/docs data/notes
python server.py