TalorData MCP Quick Start
Start using Talordata MCP Server with quick setup steps for API keys, tool configuration, and your first search data request.
Last updated
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
Please confirm before starting:
Installed Golang
You already have an available Talordata SERP API Token
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