Research Seo Keywords And Clusters Them Pack
★Trusted◇Sandbox optionalv0.1.0MITUnverifiedby AgentNode · published 5 months ago · toolpack
A tool that researches SEO keywords and clusters them into topics and intents
Quick Start
agentnode install research-seo-keywords-and-clusters-them-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packageimport agentnode
tool = agentnode.load("research-seo-keywords-and-clusters-them-pack")
result = tool.run(
action="research_and_cluster",
seed_topic="AI agent tools",
market="us",
language="en",
max_keywords=200
)
print(f"Total keywords found: {result['total_keywords']}")
print(f"Clusters formed: {len(result['clusters'])}\n")
for cluster in result["clusters"][:5]:
print(f"Cluster: {cluster['name']}")
print(f" Intent: {cluster['intent']}")
print(f" Total volume: {cluster['total_volume']:,}/mo")
print(f" Keywords: {len(cluster['keywords'])}")
for kw in cluster["keywords"][:3]:
print(f" - {kw['keyword']} ({kw['volume']:,}/mo, KD: {kw['difficulty']})")
print()Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly. some runtime checks inconclusive.
This package scored below the verification threshold. Some checks may have failed or produced inconclusive results.
Verified in real_auto mode
Last verified 4d ago· Runner v2.0.0
Use this when you need to...
- ›Research long-tail keyword opportunities for SaaS product pages
- ›Cluster hundreds of raw keywords into topical groups by search intent
- ›Map keyword clusters to content hub and spoke architectures
- ›Identify content gaps by comparing keyword clusters against existing pages
- ›Prioritize keyword targets by search volume and ranking difficulty
README
Version History
Capabilities
A tool that researches SEO keywords and clusters them into topics and intents
Input Schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "The search query"
}
}
}Output Schema
{
"type": "object",
"properties": {
"result": {
"type": "string"
}
}
}Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install research-seo-keywords-and-clusters-them-packFiles (6)
License
MITStats
Compatibility
Frameworks
Runtime
pythonTrust & Security
Publisher
AgentNode
@agentnode