NameApiMcpServer

NameApiMcpServer

2.5

NameAPI MCP Server is a project aimed at providing an interface to interact with NameAPI services using the Model Context Protocol. It requires an API key and the build setup involves compiling TypeScript files.

NameAPI MCP Server

This was generated using MCPGen by MCPGen.

Installation

Register for API Key: https://www.nameapi.org/en/register/

To build the MCP server, run:

npm install && npm run build

This will compile the typescript files and produce a build directory plus it will output the json you can copy/paste into your MCP client (Claude Desktop, Windsurf, Cursor, etc.)

If all things go well, this will produce an output similar to this:

{
  "mcpServers": {
    "nameapi": {
      "command": "node",
      "args": [
        "<thePathToYour>/build/index.js"
      ],
      "env": [
        {
          "NAMEAPI_API_KEY": "<REPLACE>"
        }
      ]
    }
  }
}