For the complete documentation index, see llms.txt. This page is also available as Markdown.

TalorData MCP Quick Start

Start using Talordata MCP Server with quick setup steps for API keys, tool configuration, and your first search data request.

This document is intended for first-time users of talordata-mcp, aiming to complete the following in the fewest possible steps: 1. Launching the service locally 2. Connecting via an MCP Client

1

Environmental Requirements

Please confirm before starting:

2

Launch locally

Run the following in the project root directory:

go mod tidy
go run .

After successful startup, the default service address is:

http://127.0.0.1:8800

3

Authentication method

The user token can be passed using either of the following two methods:

  • Recommend: Authorization: Bearer <user-token>

  • Compatible: /{user-token}/mcp

4

Integrating into the MCP Client

Method 1: Recommended – use the header.

Suitable for MCP clients that support custom headers.

{
  "mcpServers": {
    "talordata": {
      "url": "http://127.0.0.1:8800/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_USER_TOKEN"
      }
    }
  }
}

Method 2: Use a path token when headers are not supported.

{
  "mcpServers": {
    "talordata": {
      "url": "http://127.0.0.1:8800/YOUR_USER_TOKEN/mcp"
    }
  }
}

Last updated