Skip to content

v1.0.0 - Production Ready MCP Server

Latest

Choose a tag to compare

@dzivkovi dzivkovi released this 10 Aug 05:02
· 26 commits to main since this release
f306385

πŸŽ‰ First Production Release

✨ Features

  • Dual Protocol Support: REST API + MCP endpoints
  • Fuzzy Search: Handles typos with 80% similarity threshold
  • Health Monitoring: New get_health MCP tool (no auth required)
  • Multi-Client Support: Works with Claude Code, VS Code Copilot
  • Hot Reload: Automatic data refresh when acronyms file changes
  • Comprehensive Docs: MCP Integration Guide for developers

πŸ”§ MCP Tools

  • search_acronyms - Protected search with fuzzy matching
  • get_health - Public server health monitoring (NEW!)

πŸ“Š Stats

  • 43 tests passing
  • 2 MCP tools
  • 3 sample acronyms (more coming!)
  • 100% Claude Code compatible

πŸš€ Quick Start

git clone https://github.com/dzivkovi/siemens-acronyms-mcp.git
cd siemens-acronyms-mcp
python -m venv venv && source venv/bin/activate
pip install -r requirements.txt
uvicorn src.main:app --reload

πŸ“ What's Changed

  • Added get_health MCP tool for monitoring
  • Created MCP Integration Guide
  • Improved Claude workflow commands
  • Enhanced documentation

Full Changelog: v0.2.0-design-ready...v1.0.0