Test MCP Server
Test MCP Server
Description
Prerequisites
Python 3.10 or higher.
uv(recommended for dependency management) orpip.
Installation
Clone the repository:
git clone <repository-url> cd mcp_testInstall dependencies:
# Using Python 3.10 or higher with pyenv pyenv install 3.10.0 pyenv local 3.10.0 # Using uv uv venv source .venv/bin/activate uv pip install -r requirements.txt # OR using pip python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt
Usage
Allow MCP client to run the server using Python: TODO: UPDATE WITH CLAUDE CODE & GOOGLE ANTIGRAVITY SPECIFIC INSTRUCTIONS
Commit Pattern
According to Google, there are 11 types of commits (listed below).
Please mark the beginning of your commit with an identifier string indicating what type of commit it is.
This helps keep track of the development cadence and is also useful for extracting relevant information
from commit history. I also realize I am talking to myself here lol.
Example: git commit -m "docs: Adding documentation because I am a responsible engineer"
feat: Introduces a new feature.
fix: Patches a bug in the code.
docs: Changes to documentation only (README, comments).
style: Formatting, whitespace, missing semicolons; no code change in meaning.
refactor: Restructures code without changing functionality (neither a feature nor a fix).
perf: Improves performance.
test: Adds or corrects tests.
build: Changes affecting the build system or external dependencies (npm, webpack).
ci: Changes to CI configuration files and scripts (GitHub Actions, Jenkins).
chore: Maintenance tasks, updating dependencies, build process changes that don't touch src or test files.
revert: Reverts a previous commit.