Skip to main content

Ahnlich MCP

Ahnlich MCP gives MCP-compatible agents access to Ahnlich vector storage, semantic search, and metadata filtering.

It runs locally over stdio and does not require cloud credentials.

Profiles

ProfileInputRequired services
aiRaw textAhnlich AI and Ahnlich DB
dbPrecomputed embeddingsAhnlich DB

Use ai when the agent should work with text. Ahnlich AI generates the embeddings before storing them in Ahnlich DB.

Use db when your application already generates embeddings.

Exposed tools

Both profiles expose the same 11 tool names.

ToolPurposeAccess
pingCheck whether the configured Ahnlich service is reachableRead
server_infoInspect the service version, address, and memory informationRead
create_storeCreate a text or embedding storeWrite
list_storesList existing storesRead
drop_storeDelete a store and all its entriesDestructive
store_entriesStore text or precomputed embeddings with metadataWrite
similarity_searchFind entries that are semantically or numerically similarRead
get_by_metadataRetrieve entries matching indexed metadataRead
delete_by_metadataDelete entries matching indexed metadataDestructive
create_predicate_indexIndex metadata keys for filteringWrite
drop_predicate_indexRemove metadata indexesDestructive

The inputs for create_store, store_entries, and similarity_search depend on the active profile.

See the tool reference for complete inputs, return types, examples, and agent guidance.

Current scope

The AI profile currently accepts text. Direct image and audio tools are not yet available through Ahnlich MCP.

Ahnlich MCP connects to existing Ahnlich services; it does not start them automatically.

Next steps