For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

Connect the NVIDIA NeMo Agent Toolkit to the TalorData MCP server (60+ tools) to provide NeMo agents with web search, scraping, and structured data capabilities.

Overview

The NVIDIA NeMo Agent Toolkit is an open-source framework for building, analyzing, and optimizing AI agents and workflows. It features a framework-agnostic architecture, YAML-based configuration, built-in MCP support, and unified monitoring across multi-agent systems.

Hosted MCP

1

Get your API token

  • Go to SERP API-API Token to create an API Token;

  • Copy your API Token (format as: sk_7qBRe***************************

2

Install the NeMo Agent Toolkit

pip install nvidia-nat[mcp]

3

Create workflow configuration

Create one named: talordata-mcp-config.yml

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: true

Replace YOUR_talordata_API_TOKEN with the actual token you obtained in the first step.

4

Set environment variables

# Set your NVIDIA API key (for NIM or NGC)
export NVIDIA_API_KEY="your-nvidia-api-key"

5

Verify MCP connection

Testing the connection to the TalorData MCP server:

nat mcp client ping --url "https://mcp.talordata.com/YOUR_talordata_API_TOKEN/mcp"

Expected output:

Successfully connected to MCP server
Server version: 1.0
Available tools: 15

6

List of available tools

Check the tools provided by TalorData MCP:

nat mcp client tool list --url "https://mcp.talordata.com/YOUR_TOKEN/mcp"

7

Run your first agent

Execute workflow by querying:

nat run --config_file talordata-mcp-config.yml \
  --input "Search for the latest NVIDIA GPU releases and extract their specifications"

The agent will use TalorData's web scraping tools to search for and extract information.

Last updated