Skip to content

Commit 1183f9c

Browse files
committed
Update to 0.0.5 for thinqconnect-mcp
1 parent b552d34 commit 1183f9c

File tree

4 files changed

+322
-269
lines changed

4 files changed

+322
-269
lines changed

RELEASE_NOTES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
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)

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "thinqconnect-mcp"
7-
version = "0.0.4"
7+
version = "0.0.5"
88
description = "ThinQ Connect MCP"
99
authors = [
1010
{name = "ThinQ Connect", email = "[email protected]"}
@@ -20,9 +20,9 @@ classifiers = [
2020
]
2121
dependencies = [
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]

thinqconnect_mcp/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
# Constants
2222
CLIENT_ID: Final[str] = "thinqconnect-mcp-client"
2323
MCP_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

4746
def 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

0 commit comments

Comments
 (0)