Skip to main content
Glama
wolfcao

muninn-local-mcp

by wolfcao

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MUNINN_DATA_DIRNoChromaDB data directory~/.config/opencode/muninn
MUNINN_OLLAMA_URLNoOllama service URLhttp://localhost:11434
MUNINN_PROJECT_IDNoForce a specific project ID(auto from git root)
MUNINN_EMBED_MODELNoEmbedding model namemxbai-embed-large

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
memory_writeA

Write a memory entry to the current project's memory store.

Use this tool to save important context, decisions, code patterns, or next-steps that should be persisted for future sessions.

Args: text: The memory content to store (required). memory_type: Type of memory. Must be one of: summary, decision, next-steps, code-pattern, note (default). tags: Comma-separated tags for categorization (optional).

memory_searchA

Search the current project's memory store using semantic similarity.

Embeds the query and returns the most relevant stored memories.

Args: query: The search query text (required). top_k: Maximum number of results to return (default 5).

memory_listA

List memories stored in the current project, ordered by creation time (newest first).

Args: limit: Maximum number of memories to return (default 20). offset: Number of memories to skip for pagination (default 0).

memory_deleteB

Delete a specific memory from the current project by its ID.

Args: memory_id: The full or partial ID of the memory to delete (required).

global_memory_writeA

Write a memory entry to the global (cross-project) memory store.

Global memories are shared across all projects and can be queried regardless of which project the MCP server is running in.

Args: text: The memory content to store (required). memory_type: Type of memory. Must be one of: summary, decision, next-steps, code-pattern, note (default). tags: Comma-separated tags for categorization (optional).

global_memory_searchA

Search the global (cross-project) memory store using semantic similarity.

Embeds the query and returns the most relevant stored memories from all projects.

Args: query: The search query text (required). top_k: Maximum number of results to return (default 5).

global_memory_listA

List globally stored memories, ordered by creation time (newest first).

Args: limit: Maximum number of memories to return (default 20).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

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/wolfcao/muninn-local-mcp'

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