Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CHROMA_URLNoThe URL of the Chroma vector database.http://localhost:8000
OPENAI_API_KEYYesYour OpenAI API key used for generating embeddings.
CHROMA_COLLECTIONNoThe name of the Chroma collection to use.mcp_tooling_lab
OPENAI_EMBED_MODELNoThe OpenAI embedding model to use (e.g., text-embedding-3-small).text-embedding-3-small

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

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
embed_textC

Generate OpenAI embeddings for an array of texts.

index_documentsC

Embed and index documents into Chroma.

vector_searchB

Semantic search using embeddings + Chroma. Optional metadata filter via where.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: embed_text handles raw embedding generation, index_documents combines embedding with indexing, and vector_search performs semantic search. The descriptions clearly differentiate their roles in the embedding/indexing/search pipeline.

Naming Consistency5/5

All three tools follow a consistent verb_noun pattern with snake_case: embed_text, index_documents, and vector_search. The naming is predictable and follows the same convention throughout.

Tool Count3/5

With only 3 tools, the count feels thin for a 'Tooling Lab' server, which might imply broader capabilities. However, for a focused embedding/indexing/search domain, the minimal set is functional but could benefit from additional utilities like document management or configuration tools.

Completeness4/5

The tools cover the core embedding-to-search pipeline well: create embeddings, index them, and search. Minor gaps include lack of document deletion/update operations and no direct embedding storage management, but agents can work around these with the existing tools.

Maintenance

ActivityInactive
ResponsivenessNo issues