
AgentIQ
The NVIDIA NeMo Agent toolkit is an open-source library for efficiently connecting and optimizing teams of AI agents.
Repository Info
About This Server
The NVIDIA NeMo Agent toolkit is an open-source library for efficiently connecting and optimizing teams of AI agents.
Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.
Documentation
<!-- SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved. SPDX-License-Identifier: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->  # NVIDIA NeMo Agent Toolkit NVIDIA NeMo Agent toolkit is a flexible, lightweight, and unifying library that allows you to easily connect existing enterprise agents to data sources and tools across any framework. > [!NOTE] > NeMo Agent toolkit was previously known as the Agent Intelligence (AIQ) toolkit, and <!-- vale off -->AgentIQ<!-- vale on -->. The library was renamed to better reflect the purpose of the toolkit and to align with the NVIDIA NeMo family of products. The core technologies, performance and roadmap remain unchanged and the API is fully compatible with previous releases. > > The rename is still in progress and references to the previous name may still be found in the codebase and documentation. ## Key Features - [**Framework Agnostic:**](./docs/source/quick-start/installing.md#framework-integrations) NeMo Agent toolkit works side-by-side and around existing agentic frameworks, such as [LangChain](https://www.langchain.com/), [LlamaIndex](https://www.llamaindex.ai/), [CrewAI](https://www.crewai.com/), and [Microsoft Semantic Kernel](https://learn.microsoft.com/en-us/semantic-kernel/), as well as customer enterprise frameworks and simple Python agents. This allows you to use your current technology stack without replatforming. NeMo Agent toolkit complements any existing agentic framework or memory tool you're using and isn't tied to any specific agentic framework, long-term memory, or data source. - [**Reusability:**](./docs/source/extend/sharing-components.md) Every agent, tool, and agentic workflow in this library exists as a function call that works together in complex software applications. The composability between these agents, tools, and workflows allows you to build once and reuse in different scenarios. - [**Rapid Development:**](docs/source/tutorials/customize-a-workflow.md) Start with a pre-built agent, tool, or workflow, and customize it to your needs. This allows you and your development teams to move quickly if you're already developing with agents. - [**Profiling:**](./docs/source/workflows/profiler.md) Use the profiler to profile entire workflows down to the tool and agent level, track input/output tokens and timings, and identify bottlenecks. While we encourage you to wrap (decorate) every tool and agent to get the most out of the profiler, you have the freedom to integrate your tools, agents, and workflows to whatever level you want. You start small and go to where you believe you'll see the most value and expand from there. - [**Observability:**](./docs/source/workflows/observe/index.md) Monitor and debug your workflows with dedicated integrations for popular observability platforms such as Phoenix, Weave, and Langfuse, plus compatibility with OpenTelemetry-based observability platforms. Track performance, trace execution flows, and gain insights into your agent behaviors. - [**Evaluation System:**](./docs/source/workflows/evaluate.md) Validate and maintain accuracy of agentic workflows with built-in evaluation tools. - [**User Interface:**](./docs/source/quick-start/launching-ui.md) Use the NeMo Agent toolkit UI chat interface to interact with your agents, visualize output, and debug workflows. - [**Full MCP Support:**](./docs/source/workflows/mcp/index.md) Compatible with [Model Context Protocol (MCP)](https://modelcontextprotocol.io/). You can use NeMo Agent toolkit as an [MCP client](./docs/source/workflows/mcp/mcp-client.md) to connect to and use tools served by remote MCP servers. You can also use NeMo Agent toolkit as an [MCP server](./docs/source/workflows/mcp/mcp-server.md) to publish tools via MCP. With NeMo Agent toolkit, you can move quickly, experiment freely, and ensure reliability across all your agent-driven projects. ## Component Overview The following diagram illustrates the key components of NeMo Agent toolkit and how they interact. It provides a high-level view of the architecture, including agents, plugins, workflows, and user interfaces. Use this as a reference to understand how to integrate and extend NeMo Agent toolkit in your projects.  ## Links * [Documentation](https://docs.nvidia.com/aiqtoolkit): Explore the full documentation for NeMo Agent toolkit. * [Get Started Guide](./docs/source/quick-start/installing.md): Set up your environment and start building with NeMo Agent toolkit. * [Examples](./examples/README.md): Explore examples of NeMo Agent toolkit workflows located in the [`examples`](./examples) directory of the source repository. * [Create and Customize NeMo Agent toolkit Workflows](docs/source/tutorials/customize-a-workflow.md): Learn how to create and customize NeMo Agent toolkit workflows. * [Evaluate with NeMo Agent toolkit](./docs/source/workflows/evaluate.md): Learn how to evaluate your NeMo Agent toolkit workflows. * [Troubleshooting](./docs/source/troubleshooting.md): Get help with common issues. ## Get Started ### Prerequisites Before you begin using NeMo Agent toolkit, ensure that you meet the following software prerequisites. - Install [Git](https://git-scm.com/) - Install [Git Large File Storage](https://git-lfs.github.com/) (LFS) - Install [uv](https://docs.astral.sh/uv/getting-started/installation/) (version 0.5.4 or later, latest version is recommended) - Install [Python (3.11 or 3.12)](https://www.python.org/downloads/) ### Install From Source 1. Clone the NeMo Agent toolkit repository to your local machine. ```bash git clone [email protected]:NVIDIA/NeMo-Agent-Toolkit.git aiqtoolkit cd aiqtoolkit ``` 2. Initialize, fetch, and update submodules in the Git repository. ```bash git submodule update --init --recursive ``` 3. Fetch the data sets by downloading the LFS files. ```bash git lfs install git lfs fetch git lfs pull ``` 4. Create a Python environment. ```bash uv venv --seed .venv source .venv/bin/activate ``` Make sure the environment is built with Python version `3.11` or `3.12`. If you have multiple Python versions installed, you can specify the desired version using the `--python` flag. For example, to use Python 3.11: ```bash uv venv --seed .venv --python 3.11 ``` You can replace `--python 3.11` with any other Python version (`3.11` or `3.12`) that you have installed. 5. Install the NeMo Agent toolkit library. To install the NeMo Agent toolkit library along with all of the optional dependencies. Including developer tools (`--all-groups`) and all of the dependencies needed for profiling and plugins (`--all-extras`) in the source repository, run the following: ```bash uv sync --all-groups --all-extras ``` Alternatively to install just the core NeMo Agent toolkit without any plugins, run the following: ```bash uv sync ``` At this point individual plugins, which are located under the `packages` directory, can be installed with the following command `uv pip install -e '.[<plugin_name>]'`. For example, to install the `langchain` plugin, run the following: ```bash uv pip install -e '.[langchain]' ``` > [!NOTE] > Many of the example workflows require plugins, and following the documented steps in one of these examples will in turn install the necessary plugins. For example following the steps in the `examples/getting_started/simple_web_query/README.md` guide will install the `aiqtoolkit-langchain` plugin if you haven't already done so. In addition to plugins, there are optional dependencies needed for profiling. To install these dependencies, run the following: ```bash uv pip install -e '.[profiling]' ``` 6. Verify the installation using the NeMo Agent toolkit CLI ```bash aiq --version ``` This should output the NeMo Agent toolkit version which is currently installed. ## Hello World Example 1. Ensure you have set the `NVIDIA_API_KEY` environment variable to allow the example to use NVIDIA NIMs. An API key can be obtained by visiting [`build.nvidia.com`](https://build.nvidia.com/) and creating an account. ```bash export NVIDIA_API_KEY=<your_api_key> ``` 2. Create the NeMo Agent toolkit workflow configuration file. This file will define the agents, tools, and workflows that will be used in the example. Save the following as `workflow.yaml`: ```yaml functions: # Add a tool to search wikipedia wikipedia_search: _type: wiki_search max_results: 2 llms: # Tell NeMo Agent toolkit which LLM to use for the agent nim_llm: _type: nim model_name: meta/llama-3.1-70b-instruct temperature: 0.0 workflow: # Use an agent that 'reasons' and 'acts' _type: react_agent # Give it access to our wikipedia search tool tool_names: [wikipedia_search] # 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 ``` 3. Run the Hello World example using the `aiq` CLI and the `workflow.yaml` file. ```bash aiq run --config_file workflow.yaml --input "List five subspecies of Aardvarks" ``` This will run the workflow and output the results to the console. ```console Workflow Result: ['Here are five subspecies of Aardvarks:\n\n1. Orycteropus afer afer (Southern aardvark)\n2. O. a. adametzi Grote, 1921 (Western aardvark)\n3. O. a. aethiopicus Sundevall, 1843\n4. O. a. angolensis Zukowsky & Haltenorth, 1957\n5. O. a. erikssoni Lönnberg, 1906'] ``` ## Feedback We would love to hear from you! Please file an issue on [GitHub](https://github.com/NVIDIA/NeMo-Agent-Toolkit/issues) if you have any feedback or feature requests. ## Acknowledgements We would like to thank the following open source projects that made NeMo Agent toolkit possible: - [CrewAI](https://github.com/crewAIInc/crewAI) - [FastAPI](https://github.com/tiangolo/fastapi) - [LangChain](https://github.com/langchain-ai/langchain) - [Llama-Index](https://github.com/run-llama/llama_index) - [Mem0ai](https://github.com/mem0ai/mem0) - [Ragas](https://github.com/explodinggradients/ragas) - [Semantic Kernel](https://github.com/microsoft/semantic-kernel) - [uv](https://github.com/astral-sh/uv)
Quick Start
Clone the repository
git clone https://github.com/NVIDIA/AgentIQInstall dependencies
cd AgentIQ
npm installFollow the documentation
Check the repository's README.md file for specific installation and usage instructions.
Repository Details
Recommended MCP Servers
Discord MCP
Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.
Knit MCP
Connect AI agents to 200+ SaaS applications and automate workflows.
Apify MCP Server
Deploy and interact with Apify actors for web scraping and data extraction.
BrowserStack MCP
BrowserStack MCP Server for automated testing across multiple browsers.
Zapier MCP
A Zapier server that provides automation capabilities for various apps.