Skip to main content
Glama
laxmimerit

research-assistant-mcp

by laxmimerit

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OPENAI_API_KEYYesYour OpenAI API key for embeddings
RESEARCH_DB_PATHYesBase path for storing research databases. A 'research_chroma_dbs' directory will be created inside this path.

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

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
save_research_dataA

Save research content to vector database for future retrieval. Args: content: List of text content to save topic: Topic name for organizing the data (creates separate DB)

search_research_dataA

Search through saved research data using semantic similarity. Args: query: Search query topic: Topic database to search in max_results: Maximum number of results to return

list_research_topicsA

List all available research topics (vector databases).

delete_research_topicA

Delete a research topic and all its data. Args: topic: Topic name to delete

get_topic_infoA

Get detailed information about a research topic. Args: topic: Topic name to get info for

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: save, search, list, delete, and get info. There is no overlap or ambiguity between them.

Naming Consistency4/5

Tool names follow a consistent verb_noun pattern (save, search, list, delete, get). Minor inconsistency: some use 'research_data' and others 'topic(s)', but the pattern is still predictable.

Tool Count5/5

Five tools is well-scoped for a research assistant. Each tool covers a necessary function without redundancy or bloat.

Completeness4/5

Core lifecycle is covered: create (save), read (search, get_info, list), and delete (topic). Missing an update/edit tool, but for research data re-saving is a viable workaround.

Maintenance

ActivityInactive
ResponsivenessNo issues