SEO Optimizer Pack
★Trusted◇Sandbox optionalv1.0.0MIT✔Verified80by AgentNode · published 6 months ago · toolpack
Analyze and optimize web content for search engine rankings.
Audit pages for SEO issues, generate meta tags, analyze keyword density, check accessibility, and provide actionable recommendations for improving search rankings.
Quick Start
agentnode install seo-optimizer-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom seo_optimizer_pack.tool import run
result = run(
action="optimize_seo",
url="https://agentnode.dev/blog/what-are-ai-agents",
target_keywords=["AI agents", "autonomous agents", "agent tools"]
)
print(f"Overall SEO score: {result['score']}/100\n")
print("Keyword Analysis:")
for kw in result["keyword_analysis"]:
print(f" '{kw['keyword']}': density={kw['density']:.1%}, in_title={kw['in_title']}, in_h1={kw['in_h1']}")
print(f"\nMeta Title: {result['meta']['title']}")
print(f"Meta Description: {result['meta']['description']}")
print(f"Title length: {result['meta']['title_length']} chars")
print("\nRecommendations:")
for rec in result["recommendations"]:
print(f" [{rec['priority']}] {rec['message']}")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. runtime checks passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Verified in cases_real mode
Last verified 12d ago· Runner v2.0.0
Use this when you need to...
- ›Analyze blog post content for on-page SEO factors and keyword density
- ›Generate meta title and description suggestions optimized for CTR
- ›Audit heading hierarchy and internal linking structure of web pages
- ›Score content readability and suggest improvements for target audiences
- ›Check image alt text coverage and recommend missing attributes
README
Version History
Capabilities
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 seo-optimizer-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode