LogoLogo
Nimble HomeLoginCreate an Account
  • Home
  • Quick Start Tutorials
    • Tutorial Library
      • Track SEO and SEM Ranking
      • Reddit as a Guerilla Marketing Strategy
  • Nimble Platform
    • Nimble Platform Overview
    • Online Pipelines
      • Supermarkets
        • ASDA
        • Tesco Groceries
        • Sainsbury’s
        • Morrisons
      • eCommerce
      • Restaurants
        • Yelp
        • Tabelog
        • Uber Eats Japan
        • Demaecan
        • Uber Eats US
      • Real Estate
        • Zillow
  • Nimble SDK
    • SDK Overview
    • Web API
      • Web API Overview
      • API Product Specs
      • Nimble Web API Quick Start Guide
        • Introduction
        • Nimble APIs Authentication
        • Real-time URL request
        • Delivery methods
        • Batch processing
        • Response codes
        • FAQs
      • Nimble Web API Functions
        • Realtime, Async & Batch Request
        • Geo Location Targeting
        • Javascript Rendering
        • Page Interaction
          • Wait (delay)
          • Wait for Selector
          • Wait and Click
          • Wait and Type
          • Scroll
          • Scroll to
          • Infinite Scrolling
          • Capturing Screenshots
          • Collecting Cookies
          • Executing HTTP Requests
          • Operation Reference
        • Network Capture
          • Filter by URL Matching
          • Filter By Resource Type
            • Real World Demo: Capturing Ajax Requests
          • Wait for Requests
          • Capturing XHR without Rendering
          • Operation Reference
        • Data Parsing
          • Parsing Templates
          • Merge Dynamic Parser
        • Custom Headers & Cookies
        • General Params
      • Vertical Endpoints
        • SERP API
          • Real-time search request
          • Getting local data
          • Browsing SERP pagination
          • Delivery methods
          • Batch Processing
          • Endpoints and Response Codes
        • Maps API
          • Searching for places
          • Getting information about a place
          • Collecting reviews
          • Delivery methods
          • Batch processing
          • Endpoints and Response Codes
    • Web Retrieval API
      • Web Retrieval API Overview
    • Proxy API
      • Nimble IP Overview
      • Nimble IP Quick Start Guide
        • Send a request
        • Nimble IP Autentication
        • Geotargeting and session control
        • Response codes
        • FAQs
      • Nimble IP Functions
        • Country/state/city geotargeting
        • Controlling IP rotation
        • Geo-sessions: longer, stickier, more accurate sessions
        • Using IPv6 Proxies
        • Response Codes
      • Integration Guides
        • Incogniton
        • Kameleo
        • VMLogin
        • AdsPower
        • FoxyProxy
        • Android
        • Multilogin
        • iOS
        • SwitchyOmega
        • Windows
        • macOS
        • Proxifier
        • MuLogin
        • Puppeteer
        • Selenium
        • Scrapy
    • Client Libraries
      • Installation
      • Quick Start
  • AI Agents
    • LangChain Integration
    • MCP Server
  • Technologies
    • Browserless Drivers
      • API Driver-Based Pricing
    • IP Optimization Models
    • AI Parsing Skills
  • Management Tools
    • Nimble Dashboard
      • Exploring the User Dashboard
      • Managing Pipelines
      • Reporting and Analytics
      • Account Settings
      • Experimenting with the Playground
      • Billing and history
    • Nimble Admin API
      • Admin API basics
      • Admin API reference
  • General
    • Onboarding Guide
      • Getting started with Nimble's User Dashboard
      • Nimble IP Basics
      • Nimble API Basics
      • Helpful Resources
    • FAQs
      • Account Settings and Security
      • Billing and Pricing
      • Tools and Integrations
      • Nimble API
      • Nimble IP
    • Deprecated APIs
      • E-commerce API
        • E-commerce API Authentication
        • Real-time product request
        • Real-time product search request
        • Delivery methods
        • Batch Processing
        • Endpoints and Response Codes
      • Unlocker Proxy Overview
        • Unlocker Proxy Quick Start Guide
          • Real-time request
          • FAQs
        • Unlocker Proxy FAQ
Powered by GitBook
On this page
  • Available Tools
  • Quick Start
  1. AI Agents

MCP Server

An MCP server enabling AI agents to extract structured web data using Nimble Technologies.

PreviousLangChain IntegrationNextBrowserless Drivers

Last updated 15 hours ago

Nimble Labs Feature

The features included in the "Labs" section are experimental and provided for evaluation purposes only. These features may not be fully tested, stable, or integrated with all existing functionality. Future versions may differ from the current implementation.

If you are interested in using any of these experimental features in a production environment, please reach out to our team for guidance and support. Your feedback is valuable in helping us improve these features, and we welcome any issues, suggestions, or feedback you may have.

Most AI agents are blind. They hallucinate, they guess, they fail. All because they can't see the real world.

is an open standard developed by . It gives AI agents a simple, standardized way to plug into tools, data, and services.

The Nimble MCP Server bridges this gap by providing real-time, structured web data that transforms how agents interact with the digital world. With tools for web search, location data, and business intelligence, it turns chaotic web information into signals your agents can actually use.

Available Tools

  • nimble_deep_web_search: Perform web searches across multiple search engines (Google, Bing, Yandex) with configurable parameters

  • nimble_google_maps_search: Search for places on Google Maps and retrieve structured location data

  • nimble_google_maps_reviews: Collect reviews for a specific place from Google Maps

  • nimble_google_maps_place: Retrieve detailed, dynamic information about a specific place from Google Maps, including core details, metadata, amenities, and more.

Quick Start

The fastest way to use this MCP server is to connect to our official remote instance using Server-Sent Events (SSE) transport. This allows you to use the server without installing it locally.

Remote Connection Setup (SSE)

  1. Get a Nimble API Key:

    • Register for an account at

    • Navigate to the "Pipelines" page and access the "Nimble API" pipeline

    • Obtain your API credentials (provided as a base64 token)

  2. Prerequisites:

    • Ensure you have installed on your system

    • The configuration below uses npx to run the MCP remote client without needing a local installation

  3. Add Configuration to your MCP-Compatible Client:

    This configuration works with , , , and any other client that supports Model Context Protocol (MCP).

    Add this configuration to your claude_desktop_config.json:

    {
      "mcpServers": {
        "nimble-mcp-server": {
          "command": "npx",
          "args": [
            "-y", "mcp-remote@latest", "https://mcp.nimbleway.com/sse", 
            "--header", "Authorization:${NIMBLE_API_KEY}"
            ],
          "env": {
            "NIMBLE_API_KEY": "Basic XXX"
          }
        }
      }
    }

    Note: Replace Basic XXX with your actual Nimble API key.

  4. Start using the MCP tools with your AI agent!

We can't wait to see what cool things your AI agents will do with our tools! Have ideas for making these tools better or need help getting started? Drop us a line - we're here to help your agents get the data they need!

Model Control Protocol (MCP)
Anthropic
Nimble's signup page
Node.js and npm
Claude Desktop
Cursor
Qodo
Example using Nimble Maps API in Claude Desktop