Skip to main content

Research Seo Keywords And Clusters Them Pack

TrustedSandbox optionalv0.1.0MITUnverified

by AgentNode · published 6 months 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-pack

Runs in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.

Usage

From package
python
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()

Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works

Verification

low confidence30/100Unverified
smokePackage is a stub/placeholder
0/25
testsTests failed
0/15
importAll tools imported successfully
+15/15
installInstalled in 1.4s
+15/15
contractContract not validated
0/10
determinismNo determinism data
0/5
reliabilityNo stability data
0/10

Package installs and imports correctly. some runtime checks inconclusive.

install1.4s
import49ms
smoke103ms
tests1.3s

This package scored below the verification threshold. Some checks may have failed or produced inconclusive results.

Verified in real_auto mode

Python 3.12.3ffmpegpopplertesseractuv

Last verified 20d 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

code_analysisresearch_seo_keywords_and_clusters_themtool

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

Sandbox optionalFrom a trusted publisher — runs on the host by default. You can require isolation with sandbox.host_trust_policy.

Declared by the publisher. Checked before execution by the policy gate.

Networkunrestricted
Filesystemnone
Code Executionnone
Data Accessinput_only
User Approvalnever

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.

bash
agentnode install research-seo-keywords-and-clusters-them-pack

Files (6)

License

MIT

Stats

Downloads0
Installs0
Versionv0.1.0
Published3/19/2026
Channelstable
Typetoolpack

Compatibility

Frameworks

generic

Runtime

python

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode