Labsco
MCP SERVER

Akyn AI

by IlyesTal

Turn your own documents into a queryable knowledge base an assistant can ask questions of — two tools, one to query and one to see what is indexed.

Vector Stores & RAG RetrievalVerified
Summary
list_sources is the tool that keeps the other one honest — a knowledge base that will not say what is in it produces confident answers about documents it never saw.

The characteristic failure of a retrieval system is answering from adjacent material and sounding identical to answering from the right document. Being able to enumerate what was indexed lets a caller check whether the question is even in scope before trusting the answer. The surface is deliberately two tools because the interesting part is the SDK behind it — this is what your knowledge base looks like once built, and the building is where the work is.

What it is

The server side of an SDK for building knowledge bases from arbitrary sources: the tools query the base in natural language and list what has been indexed into it.

What you get
  • query asks the knowledge base a natural-language question rather than requiring a search syntax.
  • list_sources returns the documents and URLs indexed into it, so what the base can actually answer from is visible rather than assumed.
Requirements

OPENAI_API_KEY — retrieval runs against OpenAI, so queries bill to that account.

Setup effort

One command plus a key — npm install akyn-ai, then supply credentials