We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbloomhammerspace/mcp-1.5-main'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
minimal_nat_config.yml•737 B
# Minimal NVIDIA NeMo Agent Toolkit Configuration
# Based on the Hello World example from NAT documentation
functions:
# Add a simple tool
volume_canvas_tool:
_type: current_datetime
description: "Get current date and time for Volume Canvas operations"
llms:
# Tell NAT which LLM to use for the agent
nim_llm:
_type: nim
model_name: meta/llama-3.1-70b-instruct
temperature: 0.0
nvidia_api_key: "${NVIDIA_API_KEY}"
workflow:
# Use an agent that 'reasons' and 'acts'
_type: react_agent
# Give it access to our tool
tool_names: [volume_canvas_tool]
# Tell it which LLM to use
llm_name: nim_llm
# Make it verbose
verbose: true
# Retry up to 3 times
parse_agent_response_max_retries: 3