How to integrate Api ninjas MCP with Autogen

This guide walks you through connecting Api ninjas to AutoGen using the Composio tool router. By the end, you'll have a working Api ninjas agent that can get real-time bitcoin price and market data, check if this email is disposable, look up bank info for this bin through natural language commands. This guide will help you understand how to give your AutoGen agent real control over a Api ninjas account through Composio's Api ninjas MCP server. Before we dive in, let's take a quick look at the key ideas and tools involved.

Api ninjas logoApi ninjas
Api Key

Api ninjas offers 120+ public APIs spanning categories like weather, finance, sports, and more. Developers use it to supercharge apps with real-time data and actionable endpoints.

128 Tools

Introduction

This guide walks you through connecting Api ninjas to AutoGen using the Composio tool router. By the end, you'll have a working Api ninjas agent that can get real-time bitcoin price and market data, check if this email is disposable, look up bank info for this bin through natural language commands.

This guide will help you understand how to give your AutoGen agent real control over a Api ninjas account through Composio's Api ninjas MCP server.

Before we dive in, let's take a quick look at the key ideas and tools involved.

Also integrate Api ninjas with

TL;DR

Here's what you'll learn:
  • Get and set up your OpenAI and Composio API keys
  • Install the required dependencies for Autogen and Composio
  • Initialize Composio and create a Tool Router session for Api ninjas
  • Wire that MCP URL into Autogen using McpWorkbench and StreamableHttpServerParams
  • Configure an Autogen AssistantAgent that can call Api ninjas tools
  • Run a live chat loop where you ask the agent to perform Api ninjas operations

What is AutoGen?

Autogen is a framework for building multi-agent conversational AI systems from Microsoft. It enables you to create agents that can collaborate, use tools, and maintain complex workflows.

Key features include:

  • Multi-Agent Systems: Build collaborative agent workflows
  • MCP Workbench: Native support for Model Context Protocol tools
  • Streaming HTTP: Connect to external services through streamable HTTP
  • AssistantAgent: Pre-built agent class for tool-using assistants

What is the Api ninjas MCP server, and what's possible with it?

The Api ninjas MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Api ninjas account. It provides structured and secure access to a wide array of real-time data APIs, so your agent can perform actions like fetching financial data, generating barcodes, validating emails, and looking up domains on your behalf.

  • Fetch live financial and crypto data: Instantly retrieve up-to-date prices for stocks, commodities, ETFs, and cryptocurrencies, or access earnings calendars and transcripts for informed decision-making.
  • Barcode generation on demand: Have your agent create barcode images for custom data or text, perfect for inventory, tickets, or quick sharing of encoded information.
  • Email validation and security checks: Automatically check if an email address is disposable or risky before engaging users or sending communications.
  • Bank and payment info lookup: Look up bank details using BIN numbers, helping with payment processing, fraud detection, or financial analysis.
  • Domain and DNS diagnostics: Let your agent perform DNS lookups to fetch domain records, aiding in troubleshooting or technical audits quickly and efficiently.

What is the Composio tool router, and how does it fit here?

What is Composio SDK?

Composio's Composio SDK helps agents find the right tools for a task at runtime. You can plug in multiple toolkits (like Gmail, HubSpot, and GitHub), and the agent will identify the relevant app and action to complete multi-step workflows. This can reduce token usage and improve the reliability of tool calls. Read more here: Getting started with Composio SDK

The tool router generates a secure MCP URL that your agents can access to perform actions.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step08 STEPS
1

Prerequisites

You will need:

  • A Composio API key
  • An OpenAI API key (used by Autogen's OpenAIChatCompletionClient)
  • A Api ninjas account you can connect to Composio
  • Some basic familiarity with Autogen and Python async
2

Getting API Keys for OpenAI and Composio

OpenAI API Key
  • Go to the OpenAI dashboard and create an API key. You'll need credits to use the models, or you can connect to another model provider.
  • Keep the API key safe.
Composio API Key
  • Log in to the Composio dashboard.
  • Navigate to your API settings and generate a new API key.
  • Store this key securely as you'll need it for authentication.
3

Install dependencies

bash
pip install composio python-dotenv
pip install autogen-agentchat autogen-ext-openai autogen-ext-tools

Install Composio, Autogen extensions, and dotenv.

What's happening:

  • composio connects your agent to Api ninjas via MCP
  • autogen-agentchat provides the AssistantAgent class
  • autogen-ext-openai provides the OpenAI model client
  • autogen-ext-tools provides MCP workbench support

4

Set up environment variables

bash
COMPOSIO_API_KEY=your-composio-api-key
OPENAI_API_KEY=your-openai-api-key
USER_ID=your-user-identifier@example.com

Create a .env file in your project folder.

What's happening:

  • COMPOSIO_API_KEY is required to talk to Composio
  • OPENAI_API_KEY is used by Autogen's OpenAI client
  • USER_ID is how Composio identifies which user's Api ninjas connections to use
5

Import dependencies and create Tool Router session

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio

from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.tools.mcp import McpWorkbench, StreamableHttpServerParams

load_dotenv()

async def main():
    # Initialize Composio and create a Api ninjas session
    composio = Composio(api_key=os.getenv("COMPOSIO_API_KEY"))
    session = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["api_ninjas"]
    )
    url = session.mcp.url
What's happening:
  • load_dotenv() reads your .env file
  • Composio(api_key=...) initializes the SDK
  • create(...) creates a Tool Router session that exposes Api ninjas tools
  • session.mcp.url is the MCP endpoint that Autogen will connect to
6

Configure MCP parameters for Autogen

python
# Configure MCP server parameters for Streamable HTTP
server_params = StreamableHttpServerParams(
    url=url,
    timeout=30.0,
    sse_read_timeout=300.0,
    terminate_on_close=True,
    headers={"x-api-key": os.getenv("COMPOSIO_API_KEY")}
)

Autogen expects parameters describing how to talk to the MCP server. That is what StreamableHttpServerParams is for.

What's happening:

  • url points to the Tool Router MCP endpoint from Composio
  • timeout is the HTTP timeout for requests
  • sse_read_timeout controls how long to wait when streaming responses
  • terminate_on_close=True cleans up the MCP server process when the workbench is closed
7

Create the model client and agent

python
# Create model client
model_client = OpenAIChatCompletionClient(
    model="gpt-5",
    api_key=os.getenv("OPENAI_API_KEY")
)

# Use McpWorkbench as context manager
async with McpWorkbench(server_params) as workbench:
    # Create Api ninjas assistant agent with MCP tools
    agent = AssistantAgent(
        name="api_ninjas_assistant",
        description="An AI assistant that helps with Api ninjas operations.",
        model_client=model_client,
        workbench=workbench,
        model_client_stream=True,
        max_tool_iterations=10
    )

What's happening:

  • OpenAIChatCompletionClient wraps the OpenAI model for Autogen
  • McpWorkbench connects the agent to the MCP tools
  • AssistantAgent is configured with the Api ninjas tools from the workbench
8

Run the interactive chat loop

python
print("Chat started! Type 'exit' or 'quit' to end the conversation.\n")
print("Ask any Api ninjas related question or task to the agent.\n")

# Conversation loop
while True:
    user_input = input("You: ").strip()

    if user_input.lower() in ["exit", "quit", "bye"]:
        print("\nGoodbye!")
        break

    if not user_input:
        continue

    print("\nAgent is thinking...\n")

    # Run the agent with streaming
    try:
        response_text = ""
        async for message in agent.run_stream(task=user_input):
            if hasattr(message, "content") and message.content:
                response_text = message.content

        # Print the final response
        if response_text:
            print(f"Agent: {response_text}\n")
        else:
            print("Agent: I encountered an issue processing your request.\n")

    except Exception as e:
        print(f"Agent: Sorry, I encountered an error: {str(e)}\n")
What's happening:
  • The script prompts you in a loop with You:
  • Autogen passes your input to the model, which decides which Api ninjas tools to call via MCP
  • agent.run_stream(...) yields streaming messages as the agent thinks and calls tools
  • Typing exit, quit, or bye ends the loop

Complete Code

Here's the complete code to get you started with Api ninjas and AutoGen:

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio

from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.tools.mcp import McpWorkbench, StreamableHttpServerParams

load_dotenv()

async def main():
    # Initialize Composio and create a Api ninjas session
    composio = Composio(api_key=os.getenv("COMPOSIO_API_KEY"))
    session = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["api_ninjas"]
    )
    url = session.mcp.url

    # Configure MCP server parameters for Streamable HTTP
    server_params = StreamableHttpServerParams(
        url=url,
        timeout=30.0,
        sse_read_timeout=300.0,
        terminate_on_close=True,
        headers={"x-api-key": os.getenv("COMPOSIO_API_KEY")}
    )

    # Create model client
    model_client = OpenAIChatCompletionClient(
        model="gpt-5",
        api_key=os.getenv("OPENAI_API_KEY")
    )

    # Use McpWorkbench as context manager
    async with McpWorkbench(server_params) as workbench:
        # Create Api ninjas assistant agent with MCP tools
        agent = AssistantAgent(
            name="api_ninjas_assistant",
            description="An AI assistant that helps with Api ninjas operations.",
            model_client=model_client,
            workbench=workbench,
            model_client_stream=True,
            max_tool_iterations=10
        )

        print("Chat started! Type 'exit' or 'quit' to end the conversation.\n")
        print("Ask any Api ninjas related question or task to the agent.\n")

        # Conversation loop
        while True:
            user_input = input("You: ").strip()

            if user_input.lower() in ['exit', 'quit', 'bye']:
                print("\nGoodbye!")
                break

            if not user_input:
                continue

            print("\nAgent is thinking...\n")

            # Run the agent with streaming
            try:
                response_text = ""
                async for message in agent.run_stream(task=user_input):
                    if hasattr(message, 'content') and message.content:
                        response_text = message.content

                # Print the final response
                if response_text:
                    print(f"Agent: {response_text}\n")
                else:
                    print("Agent: I encountered an issue processing your request.\n")

            except Exception as e:
                print(f"Agent: Sorry, I encountered an error: {str(e)}\n")

if __name__ == "__main__":
    asyncio.run(main())

Conclusion

You now have an Autogen assistant wired into Api ninjas through Composio's Tool Router and MCP. From here you can:
  • Add more toolkits to the toolkits list, for example notion or hubspot
  • Refine the agent description to point it at specific workflows
  • Wrap this script behind a UI, Slack bot, or internal tool
Once the pattern is clear for Api ninjas, you can reuse the same structure for other MCP-enabled apps with minimal code changes.
TOOLS

Supported Tools

Every Api ninjas action and event your agent gets out of the box.

Analyze Text Sentiment

Tool to analyze the sentiment of text.

Generate Barcode Image

Tool to generate a barcode image for specified text.

BIN Lookup

Tool to look up bank information from a Bank Identification Number.

Get Bitcoin Price and Market Data

Tool to retrieve the latest Bitcoin price and 24-hour market data.

Calculate Calories Burned

Tool to calculate calories burned for an activity based on duration and body weight.

Calculate Mortgage

Tool to calculate mortgage payments and breakdowns.

Calculate Sales Tax

Tool to calculate sales tax for a purchase amount at a US location.

Check Domain Availability

Tool to check domain availability and retrieve registration information.

Check If Date Is Public Holiday

Tool to check if a specific date is a public holiday in a given country.

Check If Date Is Working Day

Tool to check if a date is a working day in a specific country.

Check Spelling

Tool to check spelling and get corrections for text.

Commodity Price

Get real-time commodity prices from major exchanges (CME, NYMEX, COMEX).

Compute Text Similarity

Tool to compute semantic similarity between two texts.

Convert Currency

Convert between currencies using current exchange rates.

Convert Unit

Convert between measurement units across different categories.

Crypto Price

Get the current real-time price for a cryptocurrency trading pair.

Detect Text Language

Tool to detect the language of input text.

Check Disposable Email

Tool to check whether an email address is from a disposable email provider.

DNS Lookup

Tool to retrieve DNS records for a specified domain.

Earnings Calendar

Fetches historical earnings data (EPS and revenue - actual vs.

Earnings Call Transcript

Retrieve the full earnings call transcript for a publicly traded company.

ETF Info

Retrieve detailed information about an Exchange-Traded Fund (ETF) by its ticker symbol.

Extract Webpage Content

Tool to extract main content and metadata from a webpage.

Filter Profanity from Text

Tool to detect and censor profanity in text.

Find EV Charging Stations

Tool to find electric vehicle charging stations near a specified location.

Generate Lorem Ipsum Text

Tool to generate Lorem Ipsum placeholder text.

Generate Secure Password

Tool to generate secure random passwords with configurable length and character types.

Generate QR Code

Tool to generate QR code images for encoding data.

Generate Random User Profiles

Tool to generate fake random user profiles with realistic data.

Generate Sudoku Puzzle

Tool to generate a new Sudoku puzzle with a specified difficulty level.

Generate Text Embeddings

Tool to encode text into vector embeddings using NLP models.

Generate User Agent String

Tool to generate realistic random user agent strings with optional filters for brand, model, OS, and browser.

Get Random Life Advice

Tool to get a random piece of life advice from the API Ninjas Advice endpoint.

Get Aircraft Information

Tool to retrieve aircraft information by manufacturer and model including specifications and performance data.

Get Airline Information

Tool to retrieve airline information by name, IATA code, or ICAO code.

Get Airport Information

Tool to search for airport information by IATA code, ICAO code, name, city, country, or region.

Get Air Quality Data

Tool to retrieve air quality index and pollutant data for a location.

Get Animal Information

Tool to retrieve detailed scientific information about animal species including taxonomy, habitat, diet, and physical characteristics.

Get Baby Names

Tool to get baby name suggestions by gender.

Get Random Bucket List Idea

Tool to retrieve a random bucket list idea or activity.

Get Cat Breed Information

Tool to retrieve information on cat breeds matching specified parameters.

Get Celebrity Information

Tool to search for celebrity information by name or other criteria.

Get Chuck Norris Joke

Tool to retrieve a random Chuck Norris joke from the API Ninjas database.

Get City Information

Tool to retrieve city information by name, country, coordinates, or population filters.

Get Cocktail Recipes

Tool to search for cocktail recipes by name or ingredients.

Get Company Logo

Tool to retrieve company logo images by company name or ticker symbol.

Get and Increment Counter

Tool to get and optionally increment a persistent counter.

Get Country Flag SVG

Tool to retrieve country flag images in SVG format.

Get Country Information

Tool to retrieve detailed country information by name, ISO code, or filtering by economic and demographic criteria.

Get County Information

Tool to retrieve US county information by name, ZIP code, or state.

Get Random Dad Jokes

Tool to retrieve random dad jokes from API Ninjas.

Get Day in History Events

Tool to get historical events for a specific date.

Get Dictionary Definition

Tool to retrieve dictionary definition for an English word.

Get Dog Breed Information

Tool to get information on dog breeds matching specified parameters.

Get Earnings

Tool to retrieve comprehensive earnings report data for publicly traded companies.

Get Electric Vehicle Info

Get electric vehicle information by make, model, year range, or electric range.

Get Emoji Information

Tool to retrieve emoji information and images from the API Ninjas Emoji database.

Get Exchange Rate

Get the current exchange rate for a currency pair.

Get Exercises

Tool to get exercise information by muscle group, type, or difficulty level.

Get Fact of the Day

Tool to retrieve the fact of the day from API Ninjas.

Get Random Facts

Tool to retrieve random interesting facts from API Ninjas.

Get GDP Data

Tool to get GDP data for a country.

Convert City to Coordinates

Tool to convert city names to geographic coordinates (forward geocoding).

Get Helicopter Information

Tool to get helicopter information by manufacturer, model, and specifications.

Get Historical Events

Tool to retrieve historical events by date or keywords.

Get Historical Figures

Tool to search for historical figures by name.

Get Random Hobby Suggestions

Tool to get random hobby suggestions from API Ninjas.

Get Holidays

Tool to retrieve holidays for a specific country and year.

Get Daily Horoscope

Tool to get daily horoscope for a zodiac sign.

Get Hospital Information

Tool to retrieve hospital information by name, location, or geographic coordinates.

Income Tax

Get current and historical income tax bracket rates for a country by year.

Get Insider Transactions

Tool to get insider trading transactions for publicly traded companies.

Get IP Geolocation

Tool to retrieve geolocation information for an IP address.

Get Joke of the Day

Tool to retrieve the joke of the day from API Ninjas.

Get Random Jokes

Tool to retrieve random jokes from API Ninjas.

Get Motorcycle Specifications

Tool to get detailed motorcycle specifications by make, model, and year.

Get Mutual Fund Info

Tool to get mutual fund information by ticker.

Get MX Records

Tool to retrieve MX (Mail Exchange) records for a specified domain.

Get Planet Information

Tool to retrieve detailed information about planets and exoplanets including mass, radius, orbital period, temperature, and host star data.

Get Population Data

Tool to get population data for a country.

Get Postal Code Location Info

Tool to retrieve location information for Canadian postal codes.

Get Property Tax Rates

Tool to get property tax rates by city, county, or ZIP code.

Get Public Holidays

Tool to retrieve official public holidays for a specific country and year.

Get Quote of the Day

Tool to retrieve the quote of the day from API Ninjas.

Get Random Quotes

Tool to get random quotes from famous people, filtered by category or author.

Get Random Image

Tool to get a random image by category from API Ninjas.

Get Random Quotes

Tool to retrieve random quotes from API Ninjas.

Get Random Word

Tool to get a random English word from the API Ninjas Random Word endpoint.

Get Recipe

Tool to search for recipes by title or ingredients from a database of over 200,000 recipes.

Convert Coordinates to Location

Tool to convert geographic coordinates to location information (reverse geocoding).

Get Rhyming Words

Tool to get words that rhyme with a given word.

Get Random Riddles

Tool to retrieve random riddles with answers from API Ninjas.

Get Sales Tax Rates

Tool to get sales tax rates by ZIP code or city and state.

Get SEC Filing

Tool to retrieve SEC filing information for publicly traded companies.

Get S&P 500 Constituents

Tool to retrieve current S&P 500 index constituents with filtering by ticker, name, sector, or date added.

Get Star Information

Tool to retrieve detailed information about stars including name, constellation, coordinates, magnitude, distance, and spectral classification.

Get Stock Exchange Information

Tool to retrieve stock exchange information by Market Identifier Code (MIC), name, city, or country.

Get Stock Price

Tool to get current stock price data for any publicly traded company or index.

Get SWIFT Code

Tool to get bank information from SWIFT code or search by bank name, city, or country.

Get Thesaurus

Tool to get synonyms and antonyms for an English word.

Get Ticker

Tool to retrieve comprehensive company profile information for publicly traded companies by stock ticker symbol.

Get Timezone Information

Tool to get timezone information for a location including UTC offset, local time, and timezone name.

Get Trivia Questions

Tool to retrieve trivia questions by category from API Ninjas.

Get Trivia of the Day

Tool to retrieve the trivia question of the day from API Ninjas.

Get Unemployment Rate

Tool to get unemployment rate data for countries.

Get University Information

Tool to retrieve university information by name or country.

Get URL Location Info

Tool to get location information for a URL domain.

Get Current Weather

Tool to retrieve current weather data for a location.

Get Weather Forecast

Tool to retrieve 5-day weather forecast in 3-hour intervals for a location.

Get WHOIS Information

Tool to get WHOIS domain registration information including registrar, creation date, and expiration date.

Get Working Days

Tool to get working days for a specific country and time period.

Get World Time

Tool to get current date and time for a location with detailed date/time components.

Get US Zipcode Location Info

Tool to retrieve location information for US zip codes.

IBAN Lookup

Tool to look up and validate an International Bank Account Number (IBAN).

Income Tax Calculator

Tool to calculate income taxes for US and Canada.

Get Inflation Data

Tool to get current inflation data for a country.

Interest Rate

Tool to get current interest rates for central banks and benchmarks.

List Stock Tickers

Tool to retrieve a paginated list of all available stock ticker symbols and company names.

VIN Lookup

Tool to decode Vehicle Identification Number (VIN) and retrieve vehicle information.

Market Cap

Tool to get real-time market cap data for a company.

Mortgage Rate

Tool to get current and historical mortgage rates.

Extract Nutrition Information

Tool to extract nutrition information from text query.

Scrape Website Content

Tool to scrape HTML content from a URL using the API Ninjas Webscraper endpoint.

Solve Sudoku Puzzle

Tool to solve a Sudoku puzzle using the API Ninjas Sudoku Solver.

Validate Email

Tool to validate email address format and check deliverability.

Validate EU VAT

Tool to retrieve and validate EU VAT (Value Added Tax) rates by country code.

Validate Phone Number

Tool to validate and format phone numbers.

Validate Routing Number

Tool to validate and retrieve bank information from a routing number.

FAQ

Frequently asked questions

With a standalone Api ninjas MCP server, the agents and LLMs can only access a fixed set of Api ninjas tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Api ninjas and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Autogen fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Api ninjas tools.

Yes, absolutely. You can configure which Api ninjas scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Api ninjas data and credentials are handled as safely as possible.

Start with Api ninjas.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Api ninjas tool your agent needs.Free to start.

Start building