sokrates-mcp 0.4.2__tar.gz → 0.4.3__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.
Files changed (20) hide show
  1. {sokrates_mcp-0.4.2/src/sokrates_mcp.egg-info → sokrates_mcp-0.4.3}/PKG-INFO +4 -2
  2. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/README.md +3 -1
  3. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/pyproject.toml +1 -1
  4. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp/main.py +1 -1
  5. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp/workflow.py +1 -1
  6. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3/src/sokrates_mcp.egg-info}/PKG-INFO +4 -2
  7. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/LICENSE +0 -0
  8. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/MANIFEST.in +0 -0
  9. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/config.yml.example +0 -0
  10. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/setup.cfg +0 -0
  11. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp/__init__.py +0 -0
  12. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp/mcp_config.py +0 -0
  13. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp/utils.py +0 -0
  14. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp.egg-info/SOURCES.txt +0 -0
  15. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp.egg-info/dependency_links.txt +0 -0
  16. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp.egg-info/entry_points.txt +0 -0
  17. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp.egg-info/requires.txt +0 -0
  18. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp.egg-info/top_level.txt +0 -0
  19. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp_client/__init__.py +0 -0
  20. {sokrates_mcp-0.4.2 → sokrates_mcp-0.4.3}/src/sokrates_mcp_client/mcp_client_example.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sokrates-mcp
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: A templated MCP server for demonstration and quick start.
5
5
  Author-email: Julian Weber <julianweberdev@gmail.com>
6
6
  License: MIT License
@@ -39,7 +39,7 @@ Dynamic: license-file
39
39
  # sokrates-mcp
40
40
 
41
41
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
42
- [![Version: 0.4.2](https://img.shields.io/badge/version-0.4.2-green)](https://github.com/Kubementat/sokrates-mcp)
42
+ [![Version: 0.4.3](https://img.shields.io/badge/version-0.4.3-green)](https://github.com/Kubementat/sokrates-mcp)
43
43
 
44
44
  A MCP server offering tools for prompt refinement and execution workflows using the FastMCP framework and the `sokrates` python library.
45
45
 
@@ -213,6 +213,8 @@ If you see "ModuleNotFoundError: fastmcp", ensure:
213
213
  2. Python virtual environment is activated
214
214
 
215
215
  ## Changelog
216
+ **0.4.3 (Sep 2025)**
217
+ - bugfix in workflow class - fix refinement workflow
216
218
 
217
219
  **0.4.2 (Sep 2025)**
218
220
  - Update version to 0.4.2
@@ -1,7 +1,7 @@
1
1
  # sokrates-mcp
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4
- [![Version: 0.4.2](https://img.shields.io/badge/version-0.4.2-green)](https://github.com/Kubementat/sokrates-mcp)
4
+ [![Version: 0.4.3](https://img.shields.io/badge/version-0.4.3-green)](https://github.com/Kubementat/sokrates-mcp)
5
5
 
6
6
  A MCP server offering tools for prompt refinement and execution workflows using the FastMCP framework and the `sokrates` python library.
7
7
 
@@ -175,6 +175,8 @@ If you see "ModuleNotFoundError: fastmcp", ensure:
175
175
  2. Python virtual environment is activated
176
176
 
177
177
  ## Changelog
178
+ **0.4.3 (Sep 2025)**
179
+ - bugfix in workflow class - fix refinement workflow
178
180
 
179
181
  **0.4.2 (Sep 2025)**
180
182
  - Update version to 0.4.2
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sokrates-mcp"
3
- version = "0.4.2"
3
+ version = "0.4.3"
4
4
  description = "A templated MCP server for demonstration and quick start."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -20,7 +20,7 @@ import os
20
20
  import argparse
21
21
 
22
22
  MCP_NAME = "sokrates-mcp"
23
- VERSION = "0.4.2"
23
+ VERSION = "0.4.3"
24
24
  DEFAULT_PROVIDER_IDENTIFIER = "default"
25
25
  DEFAULT_MODEL_IDENTIFIER = "default"
26
26
  DEFAULT_REFINEMENT_TYPE = "default"
@@ -79,7 +79,7 @@ class Workflow:
79
79
  else:
80
80
  refinement_prompt_file = str(Path(f"{path}/{self.config.refinement_prompt_filename}").resolve())
81
81
 
82
- return FileHelper.read_file(refinement_prompt_file, verbose=False)
82
+ return FileHelper.read_file(refinement_prompt_file)
83
83
 
84
84
  async def refine_prompt(self, prompt: str, ctx: Context, provider: str, model: str, refinement_type: str = 'default') -> str:
85
85
  """Refine a given prompt by enriching it with additional context.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sokrates-mcp
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: A templated MCP server for demonstration and quick start.
5
5
  Author-email: Julian Weber <julianweberdev@gmail.com>
6
6
  License: MIT License
@@ -39,7 +39,7 @@ Dynamic: license-file
39
39
  # sokrates-mcp
40
40
 
41
41
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
42
- [![Version: 0.4.2](https://img.shields.io/badge/version-0.4.2-green)](https://github.com/Kubementat/sokrates-mcp)
42
+ [![Version: 0.4.3](https://img.shields.io/badge/version-0.4.3-green)](https://github.com/Kubementat/sokrates-mcp)
43
43
 
44
44
  A MCP server offering tools for prompt refinement and execution workflows using the FastMCP framework and the `sokrates` python library.
45
45
 
@@ -213,6 +213,8 @@ If you see "ModuleNotFoundError: fastmcp", ensure:
213
213
  2. Python virtual environment is activated
214
214
 
215
215
  ## Changelog
216
+ **0.4.3 (Sep 2025)**
217
+ - bugfix in workflow class - fix refinement workflow
216
218
 
217
219
  **0.4.2 (Sep 2025)**
218
220
  - Update version to 0.4.2
File without changes
File without changes
File without changes