fenix-mcp 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl

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.
fenix_mcp/__init__.py CHANGED
@@ -17,4 +17,4 @@ Updated with improved error handling and better documentation.
17
17
 
18
18
  __all__ = ["__version__"]
19
19
 
20
- __version__ = "0.2.1"
20
+ __version__ = "0.2.2"
@@ -89,8 +89,9 @@ class InitializeTool(Tool):
89
89
  "profile": data.profile,
90
90
  "core_documents": data.core_documents,
91
91
  "user_documents": data.user_documents if payload.include_user_docs else [],
92
- "recent_memories": data.recent_memories,
93
92
  }
93
+ if data.recent_memories:
94
+ payload_dict["recent_memories"] = data.recent_memories
94
95
 
95
96
  message_lines = [
96
97
  "📦 **Dados de inicialização completos**",
@@ -46,23 +46,11 @@ class InitializationService:
46
46
  )
47
47
  if self._logger:
48
48
  self._logger.debug("User docs response", extra={"user_docs": user_docs})
49
- memories = await self._safe_call(
50
- self._api.list_memories,
51
- include_content=True,
52
- include_metadata=False,
53
- limit=3,
54
- offset=0,
55
- sortBy="created_at",
56
- sortOrder="desc",
57
- )
58
- if self._logger:
59
- self._logger.debug("Memories response", extra={"memories": memories})
60
-
61
49
  return InitializationData(
62
50
  profile=profile,
63
51
  core_documents=self._extract_items(core_docs, "coreDocuments"),
64
52
  user_documents=self._extract_items(user_docs, "userCoreDocuments"),
65
- recent_memories=self._extract_items(memories, "memories"),
53
+ recent_memories=[],
66
54
  )
67
55
 
68
56
  async def _safe_call(self, func, *args, **kwargs):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fenix-mcp
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Fênix Cloud MCP server implemented in Python
5
5
  Author: Fenix Inc
6
6
  Requires-Python: >=3.10
@@ -1,16 +1,16 @@
1
- fenix_mcp/__init__.py,sha256=LF6isSdae_j8s4tpM4kkMDDkxA1ezezbFtp2fukuWm8,615
1
+ fenix_mcp/__init__.py,sha256=W_iAG0ktWWVkX6wtJ3lfFzR8SyjeojSQSQp67Ar8cyI,615
2
2
  fenix_mcp/main.py,sha256=iJV-9btNMDJMObvcn7wBQdbLLKjkYCQ1ANGEwHGHlMU,2857
3
3
  fenix_mcp/application/presenters.py,sha256=fGME54PdCDhTBhXO-JUB9yLdBHiE1aeXLTC2fCuxnxM,689
4
4
  fenix_mcp/application/tool_base.py,sha256=qUcb46qx9gHQfrSHgj4RD4NCHW-OIvKQdR5G9uxZ5l4,1316
5
5
  fenix_mcp/application/tool_registry.py,sha256=bPT5g8GfxG_qu28R1WaDOZHvtmG6TPDvZi8eWj1T9xE,1250
6
6
  fenix_mcp/application/tools/__init__.py,sha256=Gi1YvYh-KdL9HD8gLVrknHrxiKKEOhHBEZ02KBXJaKQ,796
7
7
  fenix_mcp/application/tools/health.py,sha256=m5DxhoRbdwl6INzd6PISxv1NAv-ljCrezsr773VB0wE,834
8
- fenix_mcp/application/tools/initialize.py,sha256=F3coSBzeVinrXBzIfuifGgfNwpireWoi4lgUn_s6fCk,4627
8
+ fenix_mcp/application/tools/initialize.py,sha256=f33DNDn9u8IYwpqiBj6bjJ-wHgaUP1zEuAvUM1rMYPc,4674
9
9
  fenix_mcp/application/tools/intelligence.py,sha256=Tst0ydvaLgxx3GC1vyfNK3iWf2Nf46_A-DZGtgsMD-Q,12090
10
10
  fenix_mcp/application/tools/knowledge.py,sha256=4ClGoFRqyFIPuzzg2DAg-w2eMvTP37mH0THXDGftinw,44634
11
11
  fenix_mcp/application/tools/productivity.py,sha256=2IMkNdZ-Kd1CFAO7geruAVjtf_BWoDdbnwkl76vhtC8,9973
12
12
  fenix_mcp/application/tools/user_config.py,sha256=8mPOZuwszO0TapxgrA7Foe15VQE874_mvfQYlGzyv4Y,6230
13
- fenix_mcp/domain/initialization.py,sha256=LmDbTIfFtScfKMothKiCyEi4K0f8hEtsZcigpW5zd88,7345
13
+ fenix_mcp/domain/initialization.py,sha256=AZhdSNITQ7O3clELBuqGvjJc-c8pFKc7zQz-XR2xXPc,6933
14
14
  fenix_mcp/domain/intelligence.py,sha256=8t4cgCsGwt8ouabVYrajp3-M90DepLnP_qZPNYnGCzU,4725
15
15
  fenix_mcp/domain/knowledge.py,sha256=fKQOTt20u5aa5Yo7gPeQ1Qxa_K5pBxn1yn8FEfOFltM,20241
16
16
  fenix_mcp/domain/productivity.py,sha256=nmHRuVJGRRu1s4eMoAv8vXHKsSauCPl-FvFx3I_yCTE,6661
@@ -22,8 +22,8 @@ fenix_mcp/infrastructure/logging.py,sha256=bHrWlSi_0HshRe3--BK_5nzUszW-gh37q6jsd
22
22
  fenix_mcp/infrastructure/fenix_api/client.py,sha256=9gYNTxky5i3bjTiiRXdnld6ZCvkTtf0Xdlm0FDtQi24,28239
23
23
  fenix_mcp/interface/mcp_server.py,sha256=5UM2NJuNbwHkmCEprIFataJ5nFZiO8efTtP_oW3_iX0,2331
24
24
  fenix_mcp/interface/transports.py,sha256=PxdhfjH8UMl03f7nuCLc-M6tMx6-Y-btVz_mSqXKrSI,8138
25
- fenix_mcp-0.2.1.dist-info/METADATA,sha256=BS8uIDZk1lYVlyS_VnosK8ftqNB95kKiBPxSV2vDRUE,7260
26
- fenix_mcp-0.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
27
- fenix_mcp-0.2.1.dist-info/entry_points.txt,sha256=o52x_YHBupEd-1Z1GSfUjv3gJrx5_I-EkHhCgt1WBaE,49
28
- fenix_mcp-0.2.1.dist-info/top_level.txt,sha256=2G1UtKpwjaIGQyE7sRoHecxaGLeuexfjrOUjv9DDKh4,10
29
- fenix_mcp-0.2.1.dist-info/RECORD,,
25
+ fenix_mcp-0.2.2.dist-info/METADATA,sha256=tiq0YSn4en4c0V6Fi4fI2IQQ6I70fzTkRuWRp0cXsiY,7260
26
+ fenix_mcp-0.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
27
+ fenix_mcp-0.2.2.dist-info/entry_points.txt,sha256=o52x_YHBupEd-1Z1GSfUjv3gJrx5_I-EkHhCgt1WBaE,49
28
+ fenix_mcp-0.2.2.dist-info/top_level.txt,sha256=2G1UtKpwjaIGQyE7sRoHecxaGLeuexfjrOUjv9DDKh4,10
29
+ fenix_mcp-0.2.2.dist-info/RECORD,,