codemie-mcp-assistants 0.1.12__tar.gz → 0.1.27__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of codemie-mcp-assistants might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: codemie-mcp-assistants
3
- Version: 0.1.12
3
+ Version: 0.1.27
4
4
  Summary: MCP server for connecting to CodeMie Assistants API
5
5
  Author: Vadym Vlasenko
6
6
  Author-email: vadym_vlasenko@epam.com
@@ -8,7 +8,7 @@ Requires-Python: >=3.12,<4.0
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.12
10
10
  Requires-Dist: certifi (>=2025.1.31,<2026.0.0)
11
- Requires-Dist: codemie-sdk-python (==0.1.12)
11
+ Requires-Dist: codemie-sdk-python (==0.1.27)
12
12
  Requires-Dist: httpx (>=0.27.0,<0.28.0)
13
13
  Requires-Dist: mcp (>=1.6.0,<2.0.0)
14
14
  Requires-Dist: pydantic (>=2.11.2,<3.0.0)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "codemie-mcp-assistants"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "MCP server for connecting to CodeMie Assistants API"
5
5
  readme = "README.md"
6
6
  packages = [
@@ -9,7 +9,7 @@ packages = [
9
9
 
10
10
  [tool.poetry]
11
11
  name = "codemie-mcp-assistants"
12
- version = "0.1.12"
12
+ version = "0.1.27"
13
13
  description = "MCP server for connecting to CodeMie Assistants API"
14
14
  authors = [
15
15
  "Vadym Vlasenko <vadym_vlasenko@epam.com>",
@@ -24,7 +24,7 @@ packages = [
24
24
  python = "^3.12"
25
25
  mcp = "^1.6.0"
26
26
  httpx = "^0.27.0"
27
- codemie-sdk-python = "0.1.12"
27
+ codemie-sdk-python = "0.1.27"
28
28
  certifi = "^2025.1.31"
29
29
  pydantic = "^2.11.2"
30
30
 
@@ -39,4 +39,4 @@ requires = ["poetry-core"]
39
39
  build-backend = "poetry.core.masonry.api"
40
40
 
41
41
  [tool.poetry.scripts]
42
- codemie-mcp-assistants = "src.assistants_mcp:main"
42
+ codemie-mcp-assistants = "src.server:main"
@@ -8,7 +8,7 @@ from codemie_sdk.models.assistant import (
8
8
  ChatMessage,
9
9
  ChatRole,
10
10
  )
11
- from model import AssistantInfo, AssistantNotFoundError, Settings
11
+ from .model import AssistantInfo, AssistantNotFoundError, Settings
12
12
 
13
13
  from mcp.server.fastmcp import FastMCP
14
14
 
@@ -185,7 +185,7 @@ async def chat_with_assistant(
185
185
  raise
186
186
 
187
187
 
188
- if __name__ == "__main__":
188
+ def main():
189
189
  try:
190
190
  print("Starting CodeMie Assistants MCP server", file=sys.stdout)
191
191
  # Initialize and run the server
@@ -193,3 +193,7 @@ if __name__ == "__main__":
193
193
  except Exception as e:
194
194
  print(f"Error starting MCP server: {str(e)}", file=sys.stderr)
195
195
  sys.exit(1)
196
+
197
+
198
+ if __name__ == "__main__":
199
+ main()