gengomcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging level (e.g. INFO, DEBUG) | INFO |
| QDRANT_KEY | Yes | Qdrant API key | |
| QDRANT_URL | Yes | Qdrant cluster URL | |
| EMBEDDING_MODEL | No | Embedding model to use (default: Snowflake/snowflake-arctic-embed-s) | Snowflake/snowflake-arctic-embed-s |
| AUTO_CREATE_INDEXES | No | Whether to automatically create payload indexes at startup (default: true) | true |
| QDRANT_COLLECTION_NAME | Yes | Collection to search (e.g. papers_test) |
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 | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_papersA | Semantic search for ACL conference papers about NLP. Embeds the |
| get_paperA | Fetch a single ACL conference NLP paper by its |
| list_papersA | Browse ACL conference NLP papers using structured filters only (no semantic query). USE THIS to list papers when you know the filters but have no search text — e.g. 'all ACL 2024 papers' or 'all papers by this author'. Supports year/venue/acronym/field_of_study/author filters and pagination via |
| get_collection_infoA | Discover the ACL NLP papers collection schema: vector dimensions, distance metrics, total paper count, and sampled distinct values for filterable fields (years, venue acronyms, booktitles, fields of study). USE THIS first when you need to know what venues, years, or fields exist before building search_papers or list_papers filters. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a distinct role: semantic search, ID-based retrieval, filter-based browsing, and schema discovery. There is no overlap in purpose; search_papers and list_papers differ meaningfully by query type.
All tool names follow a consistent verb_noun pattern with lowercase and underscores: search_papers, get_paper, list_papers, get_collection_info. This is predictable and easy to understand.
Four tools is well-scoped for a read-only ACL paper search and retrieval server. Each tool covers a core capability without unnecessary bloat.
The tool surface covers the full read-only lifecycle: discover schema, search semantically, browse with filters, and retrieve a specific paper by ID. There are no obvious missing operations for the stated purpose.