Model Context Protocol (MCP) - Tích hợp SEO Tools vào Claude, n8n, VS Code & nhiều hơn nữa
Tổng số tools
Đang hoạt động
Miễn phí
Sắp ra mắt
Đang tải danh sách tools...
Tải và cài đặt Node.js nếu chưa có:
Sau khi tải về:
solannrank.zipC:\MCP\solannrank)solannrank-client-proxy.js
Mở file claude_desktop_config.json
(thường ở %APPDATA%\Claude\)
{
"mcpServers": {
"solann-seo-tools": {
"command": "node",
"args": ["C:\\MCP\\solannrank\\solannrank-client-proxy.js"],
"env": {
"MCP_SERVER_URL": "https://mcp.solannrank.com/api/mcp",
"API_KEY": "sk_live_abc123xyz456def789"
}
}
}
}
Thay đường dẫn và API Key bằng thông tin của bạn
Ví dụ câu hỏi cho Claude:
n8n-nodes-solannrank - Tích hợp trực tiếp vào n8n workflows
# Với n8n global install
npm install -g n8n-nodes-solannrank
# Hoặc với n8n local
cd ~/.n8n/nodes
npm install n8n-nodes-solannrank
# Stop n8n nếu đang chạy
# Sau đó start lại
n8n start
Trong n8n workflow:
{
"method": "POST",
"url": "https://mcp.solannrank.com/api/mcp",
"authentication": "headerAuth",
"headerAuth": {
"name": "X-API-Key",
"value": "your-api-key-here"
},
"body": {
"method": "tools/call",
"params": {
"name": "check_google_index",
"arguments": {
"url": "https://example.com"
}
}
}
}
Tính năng sẽ có:
npm install -g @solannrank/cli
# Cấu hình API Key
solann config set api-key YOUR_API_KEY
# Sử dụng commands
solann check-index https://example.com
solann keyword-research "marketing digital"
solann topical-map "seo tutorial"
{
"version": "2.0.0",
"tasks": [
{
"label": "Check SEO Index",
"type": "shell",
"command": "solann check-index ${input:url}",
"problemMatcher": []
},
{
"label": "Keyword Research",
"type": "shell",
"command": "solann keyword-research '${input:keyword}'",
"problemMatcher": []
}
],
"inputs": [
{
"id": "url",
"type": "promptString",
"description": "Enter URL to check"
},
{
"id": "keyword",
"type": "promptString",
"description": "Enter keyword"
}
]
}
### Variables
@baseUrl = https://mcp.solannrank.com/api/mcp
@apiKey = your-api-key-here
### Check Google Index
POST {{baseUrl}}
X-API-Key: {{apiKey}}
Content-Type: application/json
{
"method": "tools/call",
"params": {
"name": "check_google_index",
"arguments": {
"url": "https://example.com"
}
}
}
### Keyword Research
POST {{baseUrl}}
X-API-Key: {{apiKey}}
Content-Type: application/json
{
"method": "tools/call",
"params": {
"name": "google_keyword_research",
"arguments": {
"keywords": ["seo", "marketing"],
"location": "Vietnam"
}
}
}
### Topical Map Generator
POST {{baseUrl}}
X-API-Key: {{apiKey}}
Content-Type: application/json
{
"method": "tools/call",
"params": {
"name": "topical_map_generator",
"arguments": {
"topic": "Digital Marketing",
"depth": 3
}
}
}
{
"Solann Check Index": {
"prefix": "solann-check",
"body": [
"const response = await fetch('https://mcp.solannrank.com/api/mcp', {",
" method: 'POST',",
" headers: {",
" 'X-API-Key': '${1:your-api-key}',",
" 'Content-Type': 'application/json'",
" },",
" body: JSON.stringify({",
" method: 'tools/call',",
" params: {",
" name: 'check_google_index',",
" arguments: { url: '${2:https://example.com}' }",
" }",
" })",
"});",
"const data = await response.json();"
]
}
}
Import collection để test APIs
Tải Postman CollectionSetup:
api_keyTích hợp với 5000+ apps
Sử dụng Webhooks:
POST https://mcp.solannrank.com/api/mcp
Headers: X-API-Key: your-key
Visual workflow automation
Setup HTTP Module:
https://mcp.solannrank.com/api/mcpX-API-KeyData analysis & SEO research
import requests
api_key = "your-api-key"
url = "https://mcp.solannrank.com/api/mcp"
response = requests.post(url,
headers={"X-API-Key": api_key},
json={
"method": "tools/call",
"params": {
"name": "keyword_research",
"arguments": {"keyword": "python"}
}
})
data = response.json()
print(data)
Sử dụng Apps Script
function checkIndex(url) {
var options = {
'method': 'post',
'headers': {
'X-API-Key': 'your-key'
},
'payload': JSON.stringify({
method: 'tools/call',
params: {
name: 'check_google_index',
arguments: { url: url }
}
})
};
var response = UrlFetchApp.fetch(
'https://mcp.solannrank.com/api/mcp',
options
);
return JSON.parse(response);
}
Command line access
curl -X POST \
https://mcp.solannrank.com/api/mcp \
-H 'X-API-Key: your-key' \
-H 'Content-Type: application/json' \
-d '{
"method": "tools/call",
"params": {
"name": "check_google_index",
"arguments": {
"url": "https://example.com"
}
}
}'
npm install @solannrank/sdk
pip install solannrank
composer require solannrank/sdk
dotnet add package SolannRank.SDK
Tài liệu chi tiết: docs.solannrank.com/sdk
node --version (cần >= 18.0)npm cache clean --force