akyn-ai
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENAI_API_KEY | Yes | Your OpenAI API key for embeddings (required if using default embeddings) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| queryA | Query the "Knowledge Base" knowledge base with a natural language question. Returns relevant context chunks from the indexed content. |
| list_sourcesB | List all sources (documents, URLs) indexed in the "Knowledge Base" knowledge base |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Knowledge Base Info | Information about the "Knowledge Base" knowledge base |
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: query retrieves context from the knowledge base, while list_sources enumerates indexed sources. No overlap or ambiguity exists between them.
Both tools follow a consistent verb_noun pattern: 'query' and 'list_sources'. The naming is predictable and aligned with the server's domain.
With only two tools, the set feels thin for a knowledge base server, but it covers the core query and source-listing operations. It is on the borderline of being too minimal but not egregiously so.
The server provides only read-oriented operations (query and list_sources). Missing source management capabilities such as adding, updating, or deleting sources represent notable gaps for a complete knowledge base lifecycle, though the core query functionality is present.