Skip to content

Removed memory session type#3245

Merged
mnocon merged 1 commit into
5.0from
remove-memory-session-type
Jun 11, 2026
Merged

Removed memory session type#3245
mnocon merged 1 commit into
5.0from
remove-memory-session-type

Conversation

@mnocon

@mnocon mnocon commented Jun 11, 2026

Copy link
Copy Markdown
Contributor

Memory type was removed in https://github.com/ibexa/mcp/pull/9 - and most mentions were removed in http://github.com/ibexa/documentation-developer/pull/3106/commits/4365ea317f15ac3be8827139fda409ff2d4dad81 , this seems like a leftover.

@github-actions

Copy link
Copy Markdown

Preview of modified files: no change to preview.

@mnocon mnocon requested review from adriendupuis and removed request for micszo June 11, 2026 11:25
@github-actions

Copy link
Copy Markdown

code_samples/ change report

Before (on target branch)After (in current PR)

code_samples/mcp/mcp.matrix.yaml

docs/ai/mcp/mcp_config.md@61:``` yaml
docs/ai/mcp/mcp_config.md@62:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 1, 8) =]]
docs/ai/mcp/mcp_config.md@63:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 12, 15) =]]
docs/ai/mcp/mcp_config.md@64:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 29, 33) =]]
docs/ai/mcp/mcp_config.md@65:```

001⫶ibexa:
002⫶ repositories:
003⫶ <repository_identifier>:
004⫶ mcp:
005⫶ <server_identifier>:
006⫶ path: <server_route_path>
007⫶ enabled: true
008⫶ # Server options…
009⫶ discovery_cache: <cache_pool_service>
010⫶ session:

code_samples/mcp/mcp.matrix.yaml

docs/ai/mcp/mcp_config.md@61:``` yaml
docs/ai/mcp/mcp_config.md@62:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 1, 8) =]]
docs/ai/mcp/mcp_config.md@63:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 12, 15) =]]
docs/ai/mcp/mcp_config.md@64:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 29, 33) =]]
docs/ai/mcp/mcp_config.md@65:```

001⫶ibexa:
002⫶ repositories:
003⫶ <repository_identifier>:
004⫶ mcp:
005⫶ <server_identifier>:
006⫶ path: <server_route_path>
007⫶ enabled: true
008⫶ # Server options…
009⫶ discovery_cache: <cache_pool_service>
010⫶ session:
011⫶                        type: <psr16|file|memory>
011⫶                        type: <psr16|file>
012⫶                        # Session options…
013⫶ system:
014⫶ <siteaccess_scope>:
015⫶ mcp:
016⫶ servers:
017⫶ - <server_identifier>

docs/ai/mcp/mcp_config.md@117:``` yaml hl_lines="5-7"
docs/ai/mcp/mcp_config.md@118:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 4, 7) =]]
docs/ai/mcp/mcp_config.md@119:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 9, 11) =]]
docs/ai/mcp/mcp_config.md@120: # …
docs/ai/mcp/mcp_config.md@121:```

001⫶ mcp:
002⫶ <server_identifier>:
003⫶ path: <server_route_path>
004⫶ enabled: true
005❇️ tools:
006❇️ - Ibexa\Mcp\Tool\TranslationTools
007❇️ - Ibexa\Mcp\Tool\SeoTools
008⫶ # …

docs/ai/mcp/mcp_config.md@130:``` yaml
docs/ai/mcp/mcp_config.md@131:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 17, 17) =]]
docs/ai/mcp/mcp_config.md@132:```

001⫶ discovery_cache: cache.redis.mcp

docs/ai/mcp/mcp_config.md@165:``` yaml
docs/ai/mcp/mcp_config.md@166:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 18, 21) =]]
docs/ai/mcp/mcp_config.md@167:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 34, 43) =]]
docs/ai/mcp/mcp_config.md@168:```

001⫶ session:
002⫶ type: psr16
003⫶ service: cache.redis.mcp
004⫶ prefix: 'mcp_<server_identifier>_'
005⫶services:
006⫶ cache.redis.mcp:
007⫶ public: true
008⫶ class: Symfony\Component\Cache\Adapter\RedisTagAwareAdapter
009⫶ parent: cache.adapter.redis
010⫶ tags:
011⫶ - name: cache.pool
012⫶ clearer: cache.app_clearer
013⫶ provider: 'redis://mcp.redis:6379'
014⫶ namespace: 'mcp'

docs/ai/mcp/mcp_config.md@178:``` yaml
docs/ai/mcp/mcp_config.md@179:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 23, 25) =]]
docs/ai/mcp/mcp_config.md@180:```

001⫶ session:
002⫶ type: file
003⫶ directory: '%kernel.cache_dir%/mcp/sessions'

012⫶                        # Session options…
013⫶ system:
014⫶ <siteaccess_scope>:
015⫶ mcp:
016⫶ servers:
017⫶ - <server_identifier>

docs/ai/mcp/mcp_config.md@117:``` yaml hl_lines="5-7"
docs/ai/mcp/mcp_config.md@118:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 4, 7) =]]
docs/ai/mcp/mcp_config.md@119:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 9, 11) =]]
docs/ai/mcp/mcp_config.md@120: # …
docs/ai/mcp/mcp_config.md@121:```

001⫶ mcp:
002⫶ <server_identifier>:
003⫶ path: <server_route_path>
004⫶ enabled: true
005❇️ tools:
006❇️ - Ibexa\Mcp\Tool\TranslationTools
007❇️ - Ibexa\Mcp\Tool\SeoTools
008⫶ # …

docs/ai/mcp/mcp_config.md@130:``` yaml
docs/ai/mcp/mcp_config.md@131:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 17, 17) =]]
docs/ai/mcp/mcp_config.md@132:```

001⫶ discovery_cache: cache.redis.mcp

docs/ai/mcp/mcp_config.md@165:``` yaml
docs/ai/mcp/mcp_config.md@166:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 18, 21) =]]
docs/ai/mcp/mcp_config.md@167:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 34, 43) =]]
docs/ai/mcp/mcp_config.md@168:```

001⫶ session:
002⫶ type: psr16
003⫶ service: cache.redis.mcp
004⫶ prefix: 'mcp_<server_identifier>_'
005⫶services:
006⫶ cache.redis.mcp:
007⫶ public: true
008⫶ class: Symfony\Component\Cache\Adapter\RedisTagAwareAdapter
009⫶ parent: cache.adapter.redis
010⫶ tags:
011⫶ - name: cache.pool
012⫶ clearer: cache.app_clearer
013⫶ provider: 'redis://mcp.redis:6379'
014⫶ namespace: 'mcp'

docs/ai/mcp/mcp_config.md@178:``` yaml
docs/ai/mcp/mcp_config.md@179:[[= include_code('code_samples/mcp/mcp.matrix.yaml', 23, 25) =]]
docs/ai/mcp/mcp_config.md@180:```

001⫶ session:
002⫶ type: file
003⫶ directory: '%kernel.cache_dir%/mcp/sessions'

Download colorized diff

@mnocon mnocon merged commit f9114eb into 5.0 Jun 11, 2026
15 checks passed
@mnocon mnocon deleted the remove-memory-session-type branch June 11, 2026 11:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants