Seo Dfs Cc banner
adamkristopher adamkristopher

Seo Dfs Cc

Development community

Description

Scripts to access DataFor SEO APIs with Claude Code prompts

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

DataForSEO Keyword Research Toolkit

A Python toolkit for keyword research using the [DataForSEO API](https://dataforseo.com/), designed to work seamlessly with [Claude Code](https://claude.ai/code).

Features

  • 25+ API functions across Keywords Data, Labs, SERP, and Trends APIs
  • Auto-saves results as timestamped JSON files for easy reference
  • Claude Code integration for AI-assisted keyword research
  • Programmatic access for custom scripts and automation

Quick Start

1. Clone the repository

git clone https://github.com/yourusername/dataforseo-keyword-toolkit.git
cd dataforseo-keyword-toolkit

2. Install dependencies

pip install -r requirements.txt

3. Configure credentials

cp .env.example .env

Edit `.env` with your DataForSEO credentials (get them from [app.dataforseo.com/api-access](https://app.dataforseo.com/api-access)):

DATAFORSEO_LOGIN=your_email@example.com
DATAFORSEO_PASSWORD=your_api_password

4. Start researching

**With Claude Code:**

"Research keywords for AI website builders"
"Get YouTube keyword data for my video idea"
"Analyze competitor example.com"

**Programmatically:**

from main import keyword_research, youtube_keyword_research

# Full keyword analysis
results = keyword_research("AI website builders")

# YouTube-focused research
results = youtube_keyword_research("how to build a website")

Usage with Claude Code

Just describe what you want to research:

Request What it does
"Research keywords for [topic]" Full keyword analysis with suggestions
"Get YouTube keyword data for [video idea]" YouTube-focused research
"Find keyword suggestions for [seed]" Long-tail variations
"Analyze competitor [domain.com]" Competitor keyword intel
"What's trending in [category]" Current trends data

API Reference

High-Level Functions (`main.py`)

Function Purpose