yomemoai-mcp 0.1.2__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yomemoai-mcp
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Model Context Protocol (MCP) server for YoMemoAI - enables AI assistants to save and retrieve encrypted memories
5
5
  Project-URL: Homepage, https://github.com/yomemoai/python-yomemo-mcp
6
6
  Project-URL: Documentation, https://github.com/yomemoai/python-yomemo-mcp#readme
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "yomemoai-mcp"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "Model Context Protocol (MCP) server for YoMemoAI - enables AI assistants to save and retrieve encrypted memories"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -1,10 +1,15 @@
1
1
  import asyncio
2
2
  import json
3
3
  import logging
4
+ import os
4
5
  import sys
5
6
  from mcp.server.fastmcp import FastMCP
6
7
  from .client import MemoClient, MemoRequestError
7
- import os
8
+
9
+ if "--version" in sys.argv or "-version" in sys.argv:
10
+ from importlib.metadata import version
11
+ print(version("yomemoai-mcp"))
12
+ sys.exit(0)
8
13
 
9
14
  from dotenv import load_dotenv
10
15
  load_dotenv()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes