write_memory
Store project information in a memory slot for future tasks by specifying a meaningful memory name and content in Markdown format, using Serena's MCP server.
Instructions
Write some information about this project that can be useful for future tasks to a memory in md format. The memory name should be meaningful.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
max_answer_chars | No | ||
memory_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"max_answer_chars": {
"default": 200000,
"title": "Max Answer Chars",
"type": "integer"
},
"memory_name": {
"title": "Memory Name",
"type": "string"
}
},
"required": [
"memory_name",
"content"
],
"title": "applyArguments",
"type": "object"
}