Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From m3
Runs a local MCP server for text embedding generation using GGUF models. Supports configuration of LLM endpoints and automatic model installation. Requires no external API keys.
npx claudepluginhub skynetcmd/m3-memory --plugin m3Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"m3": {
"command": "m3",
"env": {
"M3_EMBED_GGUF": "${user_config.embed_gguf}",
"M3_AUTO_INSTALL": "1",
"LLM_ENDPOINTS_CSV": "${user_config.endpoint}",
"M3_EMBED_FALLBACK_URL": "${user_config.embed_fallback_url}"
}
}
}
}Server configuration and connection parameters
m3Environment variables set when the server starts
M3_EMBED_GGUF=${user_config.embed_gguf}M3_AUTO_INSTALL=1LLM_ENDPOINTS_CSV=${user_config.endpoint}M3_EMBED_FALLBACK_URL=${user_config.embed_fallback_url}Share bugs, ideas, or general feedback.