Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2025 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mdn Lookup

    MCP Server to fetch and summarize developer documentation from [MDN Web Docs](https://developer.mozilla.org/).

    3 stars
    JavaScript
    Updated Aug 8, 2025
    devdocs
    doclookup
    docs
    documentation
    mcp
    mcp-server
    mdn
    mdnlookup

    Documentation

    mdnlookup

    A tool to fetch and summarize developer documentation from MDN Web Docs.

    MDNlookup is a developer productivity tool that streamlines access to MDN Web Docs documentation directly from your development environment.

    Designed for seamless integration with MCP-compatible clients and editors like VS Code, mdnlookup enables developers to quickly search for and retrieve concise, relevant documentation summaries for web APIs, JavaScript methods, and other web technologies—without leaving their workflow.

    By exposing an MCP-compatible tool server over stdio, mdnlookup makes it easy to automate documentation lookups and integrate them into custom toolchains or editor extensions. This helps developers save time, reduce context switching, and stay focused on coding.

    Features

    • Search MDN for documentation using a query string.
    • Returns a summary (first paragraph) and a link to the full documentation.
    • Exposes an MCP-compatible tool server over stdio.

    Available Tools

    mdnlookup

    • Description: Fetches and summarizes developer documentation from MDN based on a search query.
    • Parameters:
    • query (string): The search term or API/method name you want documentation for.

    Installation

    Clone the repository and install dependencies:

    sh
    git clone https://github.com/yourusername/mdn-lookup.git
    cd mdn-lookup
    npm install

    Usage

    This tool is designed to be used as an MCP tool server. You can run it directly using Node:

    sh
    node index.js

    It will start an MCP server over stdio, ready to accept requests.

    Example: Configure in MCP Client

    code
    {
      "mcpServers": {
        "SmartDeveloperAssistant": {
          "command": "node",
          "args": [
            "/mdn-lookup/index.js"
          ]
        }
      }
    }

    VS Code (.vscode/settings.json)

    code
    "mcp": {
            "servers": {
                "mdnlookup": {
                    "type": "stdio",
                    "command": "node",
                    "args": ["/mdn-lookup/index.js"]
                }
            },
            "inputs": []
        },

    Run with Docker

    You can use Docker to run the mdnlookup MCP server without installing Node.js or dependencies locally or using https://hub.docker.com/r/babymanisha/mdnlookup

    Pull the Docker image from Docker Hub:

    sh
    docker pull babymanisha/mdnlookup:latest

    Or build the Docker image locally:

    sh
    docker build -t mdnlookup .

    Run the server:

    sh
    docker run -i babymanisha/mdnlookup:latest

    _or, if you built locally:_

    sh
    docker run -i mdnlookup

    This will start the MCP server over stdio inside the container, ready to be used by any MCP-compatible client or editor (such as VS Code).

    To configure VS Code to use the Dockerized server, set the command to:

    json
    {
      "mcpServers": {
        "mdnlookup": {
          "command": "docker",
          "args": [
            "run", "-i", "mdnlookup"
          ]
        }
      }
    }

    Example: Using the Tool

    You can use the mdnlookup tool by sending a request from any MCP-compatible client:

    json
    {
      "tool": "mdnlookup",
      "params": {
        "query": "Array.prototype.map"
      }
    }

    The response will look like:

    json
    {
      "content": [
        {
          "type": "text",
          "text": "The map() method creates a new array populated with the results of calling a provided function on every element in the calling array.\n\nMore info: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
        }
      ]
    }

    Example Results

    Below are screenshots of the tool in action for various queries:

    Promises

    Promises Example

    Async/Await

    Async/Await Example

    Node.js

    Node.js Example

    OAuth

    OAuth Example

    Configuration

    No additional configuration is required. The tool uses the MDN public API and fetches documentation in English.

    License

    ISC

    See Also

    • mdn-lookup listing on MCP.so

    --

    Thanks

    Happy Coding!!

    Baby Manisha Sunkara 👩🏻‍💻

    Similar MCP

    Based on tags & features

    • AD

      Adls Mcp Server

      Python·
      4
    • MC

      Mcpjungle

      Go·
      617
    • MC

      Mcp Open Library

      TypeScript·
      42
    • DA

      Davinci Resolve Mcp

      Python·
      327

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • AD

      Adls Mcp Server

      Python·
      4
    • MC

      Mcpjungle

      Go·
      617
    • MC

      Mcp Open Library

      TypeScript·
      42
    • DA

      Davinci Resolve Mcp

      Python·
      327

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k