Skip to main content

Tools Reference

Tool Stack Overview

ToolPurposeAccount Plan
SpyFuKeyword research, competitor analysis, SERP data, CPCPro LTD — 10,000 units/month
NeuronWriterContent optimization, term analysis, SERP comparisonGold plan
opencode (DeepSeek)AI content generationBuilt-in, unlimited
Website AuditorTechnical SEO auditsLink-Assistant LTD
WordPressContent publishingClient sites
VisiDataCSV pipeline managementFree
Google Search ConsolePerformance trackingFree

wp-cli

  • Purpose: Automated WordPress post creation from markdown files
  • Installation: Installed on GC-SG-M8 server at /usr/local/bin/wp
  • PHP: 8.3.30 with LiteSpeed

Key command for publishing:

wp post create \
--post_title="Title" \
--post_content="$(cat article.md | html-converter)" \
--post_status=draft \
--post_category="Category Name" \
--tags_input="tag1, tag2" \
--porcelain

The --porcelain flag returns only the new post ID, which feeds back into the pipeline CSV for tracking.

SpyFu API

  • Base URL: https://api.spyfu.com/apis/{api_group}/v2/{endpoint}
  • Auth: Basic Auth header or query parameter
  • Rate limits: 5–1,000 RPS depending on endpoint
  • Credentials: Stored in .env (gitignored)

Key endpoints:

EndpointCPMUse Case
getKeywordInformation$0.20Core keyword metrics
getRelatedKeywords$2.50Semantic keyword expansion
getQuestionKeywords$1.00FAQ/content ideas
seo/getTopCompetitors$0.20SEO rivalry analysis
getSerpAnalysisKeywords$0.50Full SERP grid (1–100)
warning

API credentials must never be written in documentation. Always reference .env instead.

NeuronWriter API

  • Endpoint: https://app.neuronwriter.com/neuron-api/0.5/writer
  • Auth: X-API-KEY header
  • Processing: ~60 seconds per query

Key methods:

MethodPurpose
/list-projectsList account projects
/new-queryCreate new content analysis
/get-queryRetrieve recommendations (poll until ready)
/evaluate-contentScore content without saving

Website Auditor

Used for technical SEO audits including:

  • Site crawl and broken link detection
  • Duplicate/missing titles and meta descriptions
  • H1/H2 structure analysis
  • Thin content identification
  • Indexability and canonical checks
  • Sitemap and robots.txt validation