File tree Expand file tree Collapse file tree 4 files changed +322
-269
lines changed
Expand file tree Collapse file tree 4 files changed +322
-269
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3- ## 0.0.4 (2025-07-02)
3+ ## 0.0.5 (2025-08-05)
4+ ### Updates
5+ - Updated dependencies to latest versions
6+ - Pinned dependency versions for consistency
7+ - Removed unused MCP_DESCRIPTION constant
8+
9+ ## 0.0.1 (2025-07-02)
410### Initial Release (Beta)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " thinqconnect-mcp"
7- version = " 0.0.4 "
7+ version = " 0.0.5 "
88description = " ThinQ Connect MCP"
99authors = [
1010 {
name =
" ThinQ Connect" ,
email =
" [email protected] " }
@@ -20,9 +20,9 @@ classifiers = [
2020]
2121dependencies = [
2222 " thinqconnect" ,
23- " python-dotenv" ,
24- " mcp" ,
25- " aiohttp"
23+ " python-dotenv==1.1.1 " ,
24+ " mcp==1.12.3 " ,
25+ " aiohttp==3.12.15 "
2626]
2727
2828[project .scripts ]
Original file line number Diff line number Diff line change 2121# Constants
2222CLIENT_ID : Final [str ] = "thinqconnect-mcp-client"
2323MCP_NAME : Final [str ] = "thinqconnect-mcp"
24- MCP_DESCRIPTION : Final [str ] = "ThinQ Connect MPC Server"
2524
2625
2726# Validation for environment variables
@@ -46,7 +45,7 @@ def setup_thinq_api() -> ThinQApi:
4645
4746def setup_mcp () -> FastMCP :
4847 """Initialize and configure MCP server"""
49- return FastMCP (name = MCP_NAME , description = MCP_DESCRIPTION )
48+ return FastMCP (name = MCP_NAME )
5049
5150
5251# Initialize MCP and API
You can’t perform that action at this time.
0 commit comments