Work with knowledge bases

Build, query, and manage knowledge bases in Meko

Knowledge bases let you load documents into your datapack and query them using semantic search (RAG). Meko handles chunking, embedding, and indexing automatically.

Supported sources

Currently, you must upload knowledge via the Meko portal:

  1. Navigate to Datapacks and select your datapack.
  2. Click Upload Knowledge Files (or Add to Knowledge Base).

Currently, Meko accepts PDF, TXT, MD, JSON, and CSV files up to 5MB each, up to 10 per batch.

Query knowledge

Once your documents are indexed, query them through the MCP server from your coding agent:

Search the knowledge base for information about deployment procedures

The MCP server embeds your query, performs similarity search against the indexed chunks, and returns the most relevant results.

Next Steps