NVIDIA NeMo Agent Toolkit Integration
Integrate Talordata MCP Server with NVIDIA NeMo Agent Toolkit to give AI agents access to real-time SERP data and structured search results.
Overview
Hosted MCP
3
Create workflow configuration
function_groups:
talordata_web:
_type: mcp_client
server:
transport: streamable-http
url: "https://mcp.talordata.com/YOUR_talordata_API_TOKEN/mcp"
tool_call_timeout: 120 # Increase timeout for web requests
auth_flow_timeout: 300
reconnect_enabled: true
reconnect_max_attempts: 3
llms:
nim_llm:
_type: nim
model_name: "meta/llama-3.1-8b-instruct"
temperature: 0.0
api_key: "${env:NVIDIA_API_KEY}"
workflow:
_type: react_agent
tool_names:
- talordata_web
llm_name: nim_llm
max_iterations: 10
verbose: true4
5
Last updated