Skip to content

Commit 6f9faec

Browse files
committed
Update version to 0.1.1 in pyproject.toml and enhance server.py documentation. Clarify that the memory file is in English and emphasize the importance of language in project memory updates.
1 parent 132b93e commit 6f9faec

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "project-mem-mcp"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "An MCP Server to store and retreive project information from memory file"
55
authors = [{ name = "PYNESYS LLC" }]
66
readme = "README.md"

src/project_mem_mcp/server.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
mcp = FastMCP(
1616
name="Project Memory MCP",
1717
instructions=f"""
18-
This MCP is for storing and retrieving project information to/from an English memory file, named
18+
This MCP is for storing and retrieving project information to/from an English(!) memory file, named
1919
`{MEMORY_FILE}` in the project directory.
2020
2121
The memory file should store comprehensive information about the project. It should include thorough context
@@ -283,7 +283,8 @@ def update_project_memory(
283283
patch_content: str = Field(description="Block-based patch content with SEARCH/REPLACE markers")
284284
):
285285
"""
286-
Update the project memory by applying a block-based patch to the memory file.
286+
Update the project memory by applying a block-based patch to the memory file. The language of the memory file
287+
is English!
287288
288289
Required block format:
289290
```

0 commit comments

Comments
 (0)