UNPKG

@mseep/falkordb-mcpserver

Version:

Model Context Protocol server for FalkorDB

38 lines (37 loc) 881 B
"use strict"; /** * MCP Client Configuration Types */ Object.defineProperty(exports, "__esModule", { value: true }); exports.sampleMCPServerConfig = exports.sampleMCPClientConfig = void 0; /** * Sample MCP Client Configuration */ exports.sampleMCPClientConfig = { defaultServer: "falkordb", servers: { "falkordb": { url: "http://localhost:3000/api/mcp", apiKey: "your_api_key_here" } } }; /** * Sample MCP Server Configuration */ exports.sampleMCPServerConfig = { mcpServers: { "falkordb": { command: "docker", args: [ "run", "-i", "--rm", "-p", "3000:3000", "--env-file", ".env", "falkordb-mcpserver", "falkordb://host.docker.internal:6379" ] } } };