feat: update integration catalog with new entries - #555
Draft
Neelpatel1604 wants to merge 1 commit into
Draft
Conversation
Replaced the existing memory.json entry with memanto.json and added new entries for time.json and other integrations in the catalog index. This update enhances the integration catalog by including additional resources for better functionality.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Agent Canvas installs MCP servers from the
@openhands/extensionsintegration catalog. Memanto exposes persistent semantic memory over MCP (remember,recall,answer, etc.), but there was no catalog entry, so users could not install it from/mcplike Tavily or Kagi.Official MCP documentation: https://docs.memanto.ai/integrations/mcp
Summary
integrations/catalog/memanto.jsonas an opt-in stdio MCP integration (uvx+memanto-mcp,serverName: memanto).MOORCHEH_API_KEYand optionalMEMANTO_DEFAULT_AGENT_IDvia install env fields (same pattern as Tavily/Kagiapi_keyoptions).integrations/catalog-index.jswithnpm run build:integrationsso Memanto is included inINTEGRATION_CATALOG.Does not remove or replace the existing
memory.jsonentry (local@modelcontextprotocol/server-memory); Memanto is an additional optional cloud memory backend.Issue Number
Fixes #554
How to Test
npm run build:integrationsuv sync --group testthenuv run pytest -q tests/test_catalog_schema.py::test_catalog_entry_validates_against_schema[memanto]From repo root (Node 18.20+):
node --input-type=module -e "import { getIntegrationCatalogEntry, listIntegrationCatalog } from './integrations/index.js'; const e = getIntegrationCatalogEntry('memanto'); console.log(e?.connectionOptions?.[0]?.transport); console.log(listIntegrationCatalog({ mcp: true }).some((x) => x.id === 'memanto'));"