Skip to main content
Glama
Touseef-ahmad

nestjs-langgraph-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OLLAMA_MODELNoOllama model name (default: 'qwen2.5:1.5b')
OPENAI_MODELNoOpenAI model name (default: 'gpt-4o-mini')
MODEL_PROVIDERNoModel provider: 'openai' or 'ollama'. Default is 'ollama'.ollama
OPENAI_API_KEYNoOpenAI API key (required if using OpenAI provider)
OLLAMA_BASE_URLNoOllama base URL (default: 'http://localhost:11434')

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
}

Tools

Functions exposed to the LLM to take actions

NameDescription
main_agentA

The main orchestration agent that can handle any request by leveraging all available tools.

Capabilities:

  • Direct tool execution for queries

  • Employee data: list employees, find by name

  • Analytics: engagement scores, trends, project health, timestamps

  • Reporting: structured report generation

  • Approval: risk assessment and approval workflows

Use this as the primary interface for all requests.

list_agentsA

Returns information about all available agents and their tools.

run_agentC

Runs a LangGraph-orchestrated NestJS agent with optional provider/model selection.

healthA

Returns basic server status and default model configuration.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.1/5.0

Scored across 4 tools

Disambiguation3/5

Health and list_agents are clear, but main_agent and run_agent overlap: both execute agents, with main_agent claiming to handle any request and run_agent offering provider/model selection. This could cause confusion about which to use.

Naming Consistency2/5

Tool names mix conventions: 'health' is a noun, 'list_agents' and 'run_agent' are verb_noun, 'main_agent' is adjective_noun. Verbs are not consistently used, leading to an incoherent pattern.

Tool Count3/5

With only 4 tools, the server feels thin for the advertised capabilities (employee data, analytics, reporting, approval). The count is borderline but not extremely low for an agent-centric design.

Completeness2/5

The server lists numerous capabilities (e.g., list employees, engagement scores) but lacks dedicated tools for them—all are funneled through main_agent. This creates a gap where agents cannot directly perform specific operations.

Maintenance

ActivityInactive
ResponsivenessNo issues