AI Tools
Generate 100 high-performing long-tail keywords based on user input with detailed SEO metrics analysis and competition metrics
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-long-tail-keyword-generator' \
-H 'Content-Type: application/json' \
-d '{"mainKeyword":"Enter core keyword (e.g., AI tools, web development, digital marketing)","industry":"Enter related industry (e.g., software development, medical services, education)","targetAudience":"Describe target audience (e.g., small business owners, individual users, professionals)","keywordType":"general","competitionLevel":"medium","includeMetrics":true,"language":"zh"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ai-long-tail-keyword-generator| Name | Type | Required | Description |
|---|---|---|---|
| mainKeyword | text | Yes | Enter the core keyword you want to generate long-tail keywords around, and AI will generate 100 related long-tail keywords for you. |
| industry | text | No | Related industry fields, used to generate more precise long-tail keywords |
| targetAudience | text | No | Your target audience features, used to generate targeted long-tail keywords |
| keywordType | select | No | Main types of keywords, which affect the generation strategy |
| competitionLevel |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-ai-long-tail-keyword-generator": {
"name": "ai-long-tail-keyword-generator",
"description": "Generate 100 high-performing long-tail keywords based on user input with detailed SEO metrics analysis and competition metrics",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-long-tail-keyword-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ai-long-tail-keyword-generator",
"arguments": {
"mainKeyword": "Enter core keyword (e.g., AI tools, web development, digital marketing)",
"industry": "Enter related industry (e.g., software development, medical services, education)",
"targetAudience": "Describe target audience (e.g., small business owners, individual users, professionals)",
"keywordType": "general",
"competitionLevel": "medium",
"includeMetrics": true,
"language": "zh"
}
}
}| select |
| No |
| Competition level of the target keyword |
| includeMetrics | checkbox | No | Include detailed SEO metrics analysis |
| language | select | No | Output language of keywords and analysis results |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Questions or issues? Contact [email protected]