Research Seo Keywords And Clusters Them Pack
★Trustedv0.1.0MITUnverifiedby AgentNode · published 19 days ago · toolpack
A tool that researches SEO keywords and clusters them into topics and intents
generic
Quick Start
bash
agentnode install research-seo-keywords-and-clusters-them-packUsage
From packagepython
import 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()Verification
low confidence43/100Unverified
smokePackage is a stub/placeholder
0/25testsPublisher-provided tests passed
+15/15importAll tools imported successfully
+15/15installInstalled in 1.8s
+15/15contractContract not validated
0/10warnings1 deprecation/runtime warning(s)
-2/0determinismNo determinism data
0/5reliabilityNo stability data
0/10Package installs and imports correctly. some runtime checks inconclusive. publisher tests passed.
✔install1.8s
✔import63ms
○smoke114ms
✔tests973ms
This package scored below the verification threshold. Some checks may have failed or produced inconclusive results.
Python 3.12.3ffmpegpopplertesseractuv
Last verified 18d 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
Research SEO Keywords and Clusters Them Pack
Research SEO keywords and cluster them into topics and intents. Discover keyword opportunities, group related terms, and map clusters to content strategies.
Quick Start
agentnode install research-seo-keywords-and-clusters-them-pack
import agentnode
tool = agentnode.load("research-seo-keywords-and-clusters-them-pack")
result = tool.run(action="research_and_cluster", seed_topic="project management software")
for cluster in result["clusters"]:
print(f"{cluster['name']}: {cluster['total_volume']:,}/mo")
Usage
Research Keywords from a Seed Topic
result = tool.run(
action="research_and_cluster",
seed_topic="CRM software for startups",
market="us",
max_keywords=300
)
for cluster in result["clusters"]:
print(f"{cluster['name']} — {len(cluster['keywords'])} keywords, {cluster['total_volume']:,}/mo")
Cluster Raw Keywords
result = tool.run(
action="cluster_keywords",
keywords=["crm free", "best crm 2026", "crm for small business", "salesforce alternative"],
clustering_method="semantic"
)
for cluster in result["clusters"]:
print(f"{cluster['name']}: {', '.join(kw['keyword'] for kw in cluster['keywords'])}")
Content Gap Analysis
result = tool.run(
action="cluster_and_map",
keywords=["crm free", "crm pricing", "crm vs spreadsheet"],
existing_urls=["https://example.com/blog/crm-guide"]
)
for cluster in result["clusters"]:
if not cluster.get("covered_by"):
print(f"Content gap: {cluster['name']} — {cluster['content_recommendation']}")
API Reference
| Capability | Description |
|---|---|
research_seo_keywords_and_clusters_them | Research, cluster, and analyze SEO keywords with intent mapping |
Requirements
No API keys required.
License
MIT
Version History
Capabilities
A tool that researches SEO keywords and clusters them into topics and intents
Permissions
This package declares the following access levels. Review before installing.
Networkunrestricted
Filesystemnone
Code Executionnone
Data Accessinput_only
User Approvalnever
bash
agentnode install research-seo-keywords-and-clusters-them-packFiles (6)
License
MITStats
Downloads0
Installs0
Versionv0.1.0
Published3/19/2026
Channelstable
Typetoolpack
Compatibility
Frameworks
generic
Runtime
pythonTrust & Security
Publisher★Trusted
SignatureNone
ProvenanceNone
Security Issues0
Publisher
A
AgentNode
@agentnode