← Back to Blog
Deep Dives·Jan 19, 2025·8 min read

The AI Tools I Actually Pay For (And Why)

No affiliate links, no sponsored content. Just the AI tools I've paid for with my own money after trying dozens of alternatives.

AIToolsProductivityRecommendations
JV

Jose Viscasillas

January 19, 2025 · 8 min read

The AI Tools I Actually Pay For (And Why)

I've tried dozens of AI tools. Most were overhyped garbage. A few changed how I work.

Here's my actual AI toolkit—the stuff I pay for monthly with my own money. No affiliate links. No sponsored content. Just honest recommendations from someone who's way too deep into this stuff.

The List (TL;DR)

ToolMonthly CostUse Case
Claude Pro$20Primary AI assistant
GitHub Copilot$10Code completion
Cursor Pro$20AI-powered IDE
ElevenLabs$22Voice generation
Midjourney$30Image generation
Total$102

Let me explain each one.

Claude Pro ($20/month)

What it is: Anthropic's AI chat interface with Claude 3.5 Sonnet and Opus.

Why I pay for it:

Claude is better than ChatGPT for my work. Controversial opinion, I know. Here's why:

  1. Better at code: Claude writes cleaner code, catches more edge cases, and explains reasoning better
  2. Longer context: 200K tokens vs ChatGPT's 128K
  3. Less corporate: Fewer refusals, more willing to engage with nuanced topics
  4. Artifacts: The artifact feature for code/documents is genuinely useful

What I use it for:

  • Coding assistance (architecture discussions, debugging)
  • Writing (blog posts, documentation)
  • Analysis (code review, technical decisions)
  • Learning (explaining complex topics)

The competition:

  • ChatGPT Plus ($20) is comparable but I prefer Claude's personality
  • Gemini Advanced ($20) is... fine. Nothing special.
  • Free Claude works but rate limits are brutal

Verdict: Worth every penny. My most-used AI tool.

GitHub Copilot ($10/month)

What it is: AI code completion in your editor.

Why I pay for it:

Copilot is table stakes for modern development. Not using it is like coding without autocomplete.

What it actually does well:

  • Boilerplate generation (saves hours/week)
  • Test writing (suggest test cases I'd forget)
  • API usage (remembers parameters I don't)
  • Repetitive code (loop patterns, similar functions)

What it does poorly:

  • Complex logic (often wrong)
  • Architecture (doesn't understand big picture)
  • Recent APIs (training data cutoff)

How I use it:

Tab to accept obvious completions. Escape to reject garbage. Never trust it blindly.

typescript
// I type:
function calculateTotal(items

// Copilot suggests:
function calculateTotal(items: CartItem[]): number {
  return items.reduce((sum, item) => sum + item.price * item.quantity, 0);
}

90% of the time, that's exactly what I wanted.

The competition:

  • Codeium (Free): Decent, but noticeably worse
  • Amazon CodeWhisperer (Free for individuals): Meh
  • Tabnine: Haven't tried the new version

Verdict: Best $10/month I spend on dev tools.

Cursor Pro ($20/month)

What it is: VS Code fork with deep AI integration.

Why I pay for it:

Cursor goes beyond completion to actual AI-assisted editing. It's what Copilot should be.

Killer features:

  1. Chat with codebase: Ask questions about your entire project
  2. Cmd+K editing: Select code, describe what you want, get edits
  3. Multi-file changes: AI can modify multiple files for a task
  4. Composer: Build features through conversation

Example workflow:

text
Me: Add error handling to all API routes and create a consistent error response format

Cursor: [Shows diff across 7 files]
- Creates error handler utility
- Updates all routes to use it
- Adds TypeScript types for errors
- Creates error documentation

One prompt, 7 files updated correctly. That's power.

What it does poorly:

  • Large refactors (loses context)
  • Unfamiliar codebases (needs exploration first)
  • Novel patterns (copies existing style too much)

The competition:

  • VS Code + Copilot Chat: Not as integrated
  • JetBrains AI: Haven't tried extensively
  • Windsurf: Interesting alternative, not as polished

Verdict: If you code daily, this is worth it. Cursor + Copilot together is the sweet spot.

ElevenLabs ($22/month)

What it is: AI voice synthesis that sounds human.

Why I pay for it:

I create content that needs voiceover. ElevenLabs is the only tool where the output is genuinely usable.

Use cases:

  • Video narration
  • Prototype voice features
  • Audiobook samples
  • Accessibility features

Quality comparison:

ServiceNaturalnessEmotionSpeed
ElevenLabs9/108/10Fast
Azure Neural7/105/10Fast
Google WaveNet6/104/10Fast
Coqui (free)5/103/10Slow

The difference is obvious. ElevenLabs sounds like a person. Others sound like AI trying to sound like a person.

The catch: $22 gives you 100K characters/month. That's about 2-3 hours of audio. Not enough for heavy production use.

Verdict: Worth it if you need voice. Skip it if you don't.

Midjourney ($30/month)

What it is: AI image generation via Discord.

Why I pay for it:

When I need beautiful AI images, nothing else comes close. Midjourney's aesthetic quality is unmatched.

What I use it for:

  • Blog cover images (yes, including this blog)
  • Concept art for projects
  • Presentation visuals
  • Social media content

Why not alternatives:

  • DALL-E 3: Corporate stock photo aesthetic
  • Stable Diffusion: Quality requires too much tuning
  • Ideogram: Good for text, worse aesthetics

The workflow:

text
/imagine professional blog cover for article about AI agents, 
minimalist style, dark background, teal accents, abstract 
geometric shapes, futuristic, editorial quality --ar 16:9

Generate 4, pick the best, upscale, done.

The frustration: Discord-only interface is painful. No proper API. Limited control. It's like buying a Ferrari with a tractor steering wheel.

Verdict: Best image quality, worst user experience. Pay for it anyway.

What I've Tried and Cancelled

ChatGPT Plus ($20/month)

Cancelled after switching to Claude. Not bad, just prefer Claude's style.

Jasper ($49/month)

Marketing AI tool. Cancelled after 1 month. Just use Claude directly.

Copy.ai ($36/month)

Same as Jasper. Not worth it when Claude exists.

Notion AI ($10/month)

Fine for basic stuff, but I already have Claude. Redundant.

Grammarly Premium ($12/month)

Claude catches the same issues and does more. Cancelled.

Otter.ai ($17/month)

Transcription service. Whisper is free and better. Cancelled.

Runway ($15/month)

Video generation. Not ready yet. Cancelled after burning through credits on unusable output.

Perplexity Pro ($20/month)

AI search. Good, but not $20 better than free tier. Cancelled.

What I Use For Free

Whisper (OpenAI)

Free, local, best transcription. No reason to pay for anything else.

bash
whisper recording.mp3 --model large-v3

Ollama

Free local LLM running. For private/sensitive work.

bash
ollama run llama3.1

Stable Diffusion

Free, local image generation when I need control or can't afford Midjourney credits.

Claude Free Tier

For quick questions when I've hit Pro limits (rare).

The Stack That Works

After all my experimentation, here's what I actually recommend:

For coding:

text
Cursor Pro + GitHub Copilot
Total: $30/month

This combo covers 95% of AI-assisted coding needs.

For everything else:

text
Claude Pro
Total: $20/month

Writing, analysis, research, learning—Claude handles it all.

For content creation:

text
Add Midjourney + ElevenLabs
Total: $72/month

Only if you create visual/audio content regularly.

The $50/month developer stack:

  • Cursor Pro: $20
  • Claude Pro: $20
  • GitHub Copilot: $10

This is what I'd recommend to any developer who asks.

The Economics

Time saved per week: ~5-10 hours

Monthly cost: ~$100

Hourly rate to break even: $2.50-5/hour

If your time is worth more than $5/hour (it is), these tools pay for themselves instantly.

But more importantly: they make work more enjoyable. Less tedium. More creativity. That's worth something too.

What I'm Watching

Tools I'm evaluating:

  1. Devin/Similar AI coding agents: Not ready yet, but interesting
  2. Sora (when available): Video generation could change everything
  3. GPT-5 (whenever): Might shift the Claude/ChatGPT balance
  4. Apple Intelligence: Built-in AI could reduce need for third-party tools

My prediction: In 2 years, most of these tools will be commoditized. The winners will be whoever ships the best UX, not the best model. Cursor gets this. Most others don't.

The Bottom Line

You don't need every AI tool. You need:

  1. One good LLM chat (Claude or ChatGPT)
  2. Code completion (Copilot)
  3. Maybe an AI IDE (Cursor, if you code a lot)
  4. Specialized tools only if needed (voice, images)

Total reasonable spend: $30-50/month for most developers.

Everything else is either redundant, overhyped, or not ready yet.

Stop subscribing to everything. Pick tools that solve real problems. Use them until they're obsolete.

That's my philosophy anyway. Your mileage may vary.

---

The best AI tool is the one you actually use. Subscribe to less, use more.

JV

Written by Jose Viscasillas

Senior Software Engineer building video platforms at ON24. 21 years of coding experience. I write about React, TypeScript, AI, and developer tools.

Recommended Reads

📬

Subscribe to the Newsletter

New articles delivered to your inbox. No spam, unsubscribe anytime.

Join 500+ developers getting weekly insights on React, TypeScript, and building products.