Skip to main content
Glama
mixelpixx

meMCP - Memory-Enhanced Model Context Protocol

config_export

Export configuration settings from the Memory-Enhanced Model Context Protocol (meMCP) server to manage and transfer persistent memory and learning configurations for Large Language Models (LLMs).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Main handler for config_export tool: calls configManager.exportConfiguration() and formats the JSON response.
    async handleExport(args) { try { const configData = await this.configManager.exportConfiguration(); return { content: [ { type: 'text', text: `📤 **Configuration Export**\n\n\`\`\`json\n${configData}\n\`\`\`\n\n*Copy this JSON to backup or share your configuration*`, }, ], }; } catch (error) { return { content: [ { type: 'text', text: `Error exporting configuration: ${error.message}`, }, ], isError: true, }; } }
  • Registers the config_export tool with the MCP server, including description, empty input schema, and links to handleExport.
    // Register config_export tool server.registerTool( 'config_export', 'Export all configuration as JSON', { type: 'object', properties: {}, }, async (args) => { return await this.handleExport(args); } );
  • Input schema for config_export: no parameters required.
    type: 'object', properties: {}, },
  • Supporting method that gathers configuration data and serializes it to JSON string.
    async exportConfiguration() { const exportData = { factTypes: this.config.factTypes, scoringWeights: this.config.scoringWeights, settings: this.config.settings, exportedAt: new Date().toISOString(), version: '1.0.0', }; return JSON.stringify(exportData, null, 2); }
  • Calls registerTools on ConfigurationTools instance, which includes config_export registration.
    await this.configurationTools.registerTools(server);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mixelpixx/meMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server