Tag: Claude API

  • Anthropic API Pricing: Every Model, Every Mode, What You’ll Actually Pay (2026)

    The Anthropic API is how developers and businesses access Claude programmatically — and the pricing model is fundamentally different from the subscription tiers. Instead of a flat monthly fee, you pay per token, per model, per call. This is the complete breakdown of Anthropic API pricing as of April 2026: every model, every pricing mode, and how to calculate what you’ll actually spend.

    The short version: Haiku is the cheapest and fastest. Sonnet is the workhorse. Opus is for complex reasoning where quality is the priority. The Batch API cuts all prices roughly in half for non-time-sensitive work. You prepay credits — no surprise bills.

    Anthropic API Pricing by Model (April 2026)

    All API pricing is per million tokens. Input tokens are what you send to the model; output tokens are what Claude returns. Output consistently costs more than input across all models.

    Model Input (per M tokens) Output (per M tokens) Best for
    Claude Haiku ~$1.00 ~$5.00 High-volume, latency-sensitive tasks
    Claude Sonnet ~$3.00 ~$5.00 Production workloads, content generation
    Claude Opus ~$5.00 ~$25.00 Complex reasoning, highest quality output

    These are approximate figures — Anthropic publishes exact current rates on their pricing page and updates them with each model generation. Always verify before building cost projections into a production system.

    What Is a Token?

    A token is the unit of text the API processes. One token is roughly four characters of English text — or about three-quarters of a word. A 750-word article is approximately 1,000 tokens. A 10-page document might be 5,000–8,000 tokens depending on formatting.

    Both your input (the prompt, system instructions, conversation history) and Claude’s output (the response) consume tokens. In a long multi-turn conversation, the entire conversation history is re-sent with each message — so token costs compound over long sessions.

    The Batch API: ~50% Off for Non-Real-Time Work

    Anthropic’s Batch API processes requests asynchronously and returns results within 24 hours. In exchange, you get roughly half off listed token rates across all models. This is the highest-leverage pricing lever available to developers running content pipelines, data processing, or any workload where real-time response isn’t required.

    Model Standard Input Batch Input (~50% off)
    Haiku ~$1.00/M ~$0.50/M
    Sonnet ~$3.00/M ~$1.50/M
    Opus ~$5.00/M ~$7.50/M

    If you’re running more than 20 API calls that don’t need instant responses, the Batch API should be your default.

    How API Billing Works

    The Anthropic API does not operate on a subscription. You load prepaid credits into the Anthropic Console — your developer dashboard — and those credits draw down as you use the API. When credits run out, API calls stop until you add more. There’s no bill that arrives at the end of the month with a surprise on it.

    Usage reporting in the Console shows a breakdown by model, by date, and by API key, so you can see exactly where token spend is going across different projects or team members.

    Context Window and Pricing

    Context window size affects how much you can send in a single API call — it doesn’t directly change pricing per token. However, larger context windows mean you can include more conversation history, longer documents, or more detailed system prompts, which increases input token counts and therefore cost per call.

    Claude’s context windows as of April 2026 are generous across all tiers — Haiku, Sonnet, and Opus all support 200K token context windows, which covers most production use cases without forced truncation.

    API vs. Subscription: Which Do You Need?

    Use the API if: you’re building an application on top of Claude, running automated pipelines, integrating Claude into your own tools, or processing data programmatically.

    Use Pro/Max if: you’re an individual using Claude through the web interface or Claude Code for your own work — not building something for others to use.

    You might need both if: you use Claude daily for personal work (subscription) and also build Claude-powered tools for clients (API). They’re billed separately and don’t share limits.

    Frequently Asked Questions

    How much does the Anthropic API cost per month?

    There’s no monthly fee for the API itself — you pay per token used. Costs depend entirely on which model you use, how many calls you make, and how long your prompts and responses are. Light usage on Haiku can cost just a few dollars. Heavy Opus usage for complex tasks costs significantly more. Load credits in advance via the Anthropic Console.

    What is the cheapest Anthropic API model?

    Claude Haiku is the least expensive model at approximately $1.00 per million input tokens. It’s optimized for speed and cost, making it the right choice for high-volume tasks where response quality doesn’t need to be at Opus level — classification, extraction, summarization, routing logic.

    Does Anthropic offer API discounts for volume?

    The Batch API offers roughly 50% off standard token rates for asynchronous workloads. For very high-volume usage, Anthropic also has enterprise agreements with custom pricing — contact their sales team. Standard token pricing doesn’t automatically tier down with volume outside of those two options.

    How is Anthropic API pricing compared to OpenAI?

    At the cheapest tier, OpenAI’s GPT-4o mini is less expensive per token than Claude Haiku. At the mid tier, Claude Sonnet and GPT-4o are in a similar range. At the top tier, Claude Opus and GPT-4o are comparable in price. The right choice depends on the task — not every model performs identically on every workload, so cost per token is only part of the calculation.

    Do API tokens and subscription usage share limits?

    No. API usage and Claude.ai subscription usage are entirely separate. Your Pro or Max subscription usage doesn’t count against API credits, and API credits don’t increase your subscription limits. They’re billed and tracked independently through different systems.

    Need this set up for your team?
    Talk to Will →
  • Claude Code: The Complete Beginner’s Guide for 2026

    Claude Code is the fastest-growing AI coding tool in the developer community. The r/ClaudeCode subreddit has 4,200+ weekly contributors — roughly 3x larger than r/Codex. Anthropic reports $2.5B+ in annualized revenue attributable to Claude Code adoption. This complete guide takes you from installation to your first productive agentic coding session.

    What Is Claude Code?

    Claude Code is a terminal-native AI coding tool from Anthropic. Unlike IDE plugins that assist line-by-line, Claude Code operates at the project level — it reads your entire codebase, understands the architecture, writes and edits multiple files in a single session, runs tests, and works through complex engineering tasks autonomously. It uses Claude models with a 1-million-token context window — large enough to hold an entire codebase in memory.

    Installation

    Requirements: Node.js 18+, a Claude Max subscription ($100+/month) or Anthropic API key.

    # Install globally
    npm install -g @anthropic-ai/claude-code
    
    # Navigate to your project
    cd your-project
    
    # Authenticate
    claude login
    
    # Start a session
    claude

    Setting Up CLAUDE.md (The Most Important Step)

    CLAUDE.md is a file you create in your project root that Claude Code reads at the start of every session. It’s the most important setup step — it gives Claude the context it needs to work effectively in your specific codebase without you re-explaining everything every time.

    A good CLAUDE.md includes:

    # Project: [Your Project Name]
    
    ## Architecture
    [Brief description of how the codebase is organized]
    
    ## Tech Stack
    - Language: [Python 3.11 / Node.js 20 / etc.]
    - Framework: [Django / Next.js / etc.]
    - Database: [PostgreSQL / MongoDB / etc.]
    - Testing: [pytest / Jest / etc.]
    
    ## Coding Standards
    - [Style guide, naming conventions, etc.]
    - [Preferred patterns for this codebase]
    
    ## Common Tasks
    - Run tests: `[command]`
    - Start dev server: `[command]`
    - Lint: `[command]`
    
    ## Known Issues / Context
    - [Anything Claude should know before working]

    Key Slash Commands

    Command What It Does
    /init Scans your codebase and generates an initial CLAUDE.md
    /memory View and edit Claude’s memory for this project
    /compact Compact the conversation to free up context space
    /batch Run multiple commands or edits in one operation
    /clear Clear conversation history (start fresh)

    Your First Agentic Session

    Start Claude Code in your project directory and try:

    • “Explain the overall architecture of this codebase” — Claude reads and summarizes
    • “Add input validation to the user registration endpoint” — Claude finds the right file, writes the validation, updates tests
    • “There’s a bug where [describe issue] — find it and fix it” — Claude searches the codebase, identifies the cause, fixes it
    • “Write tests for [module or function]” — Claude reads the code and writes comprehensive tests

    Rate Limits and Token Management

    Claude Code on Max 5x gets approximately 44,000-220,000 tokens per 5-hour window. Long sessions with large codebases consume tokens quickly. Best practices:

    • Use /compact when sessions get long to free up context
    • Be specific in your requests — “fix the authentication bug in auth.py” uses fewer tokens than “look through all my files for problems”
    • Auto-compaction (beta) handles this automatically when enabled

    Frequently Asked Questions

    What subscription do I need for Claude Code?

    Claude Max at $100/month minimum. Claude Code can also be accessed via API billing — often more cost-effective for lower-volume use.

    Can Claude Code edit multiple files at once?

    Yes. Claude Code can read, edit, and create multiple files in a single session — and runs the edits atomically, so you can review and accept or reject changes.

    How do I install Claude Code on Windows?

    Claude Code requires Node.js 18+ and runs via WSL (Windows Subsystem for Linux) on Windows. Install WSL, then follow the standard npm installation steps within your WSL terminal.


    Need this set up for your team?
    Talk to Will →
  • Claude vs Amazon Q: Which AI Coding Assistant for AWS Developers?

    For AWS developers, Claude and Amazon Q represent two distinct approaches to AI-assisted development. Amazon Q is deeply integrated into the AWS ecosystem — built to understand your AWS environment, your IAM policies, your CloudFormation stacks, and your AWS-specific workflows. Claude is a more capable general-purpose AI that can handle complex reasoning and code but requires you to provide AWS context manually. This comparison helps you choose — and explains why many AWS developers use both.

    What Amazon Q Does Well

    • AWS-native context: Q can read your actual AWS account state — running resources, IAM permissions, CloudWatch logs — without you describing them
    • AWS documentation: Q is trained specifically on AWS documentation and gives more accurate, up-to-date answers for AWS-specific questions
    • Console integration: Q is embedded in the AWS Console, CloudShell, and VS Code via the AWS Toolkit — zero additional setup for AWS users
    • Troubleshooting: Q can analyze your actual CloudWatch errors and IAM policy conflicts directly
    • Cost optimization: Q analyzes your actual usage data for cost recommendations

    What Claude Does Better

    • Code quality: Claude Opus 4.6 scores 80.8% on SWE-bench vs Amazon Q’s lower published benchmarks — for complex, multi-file code generation, Claude produces better results
    • General reasoning: Architecture decisions, trade-off analysis, and complex problem-solving — Claude reasons more deeply
    • Non-AWS work: If you’re building multi-cloud or have significant non-AWS code, Claude handles everything equally; Q is heavily AWS-optimized
    • Document analysis: Claude’s 200K context window for reading technical specs, RFCs, or lengthy docs far exceeds Q’s capabilities
    • Writing: Technical blog posts, documentation, runbooks — Claude writes better

    Pricing Comparison

    Claude Amazon Q
    Individual $20-200/month $19/month (Q Developer Pro)
    Free tier Yes (limited) Yes (Q Developer Free)
    Business Custom $19/user/month

    Amazon Q Developer Pro at $19/month is competitive with Claude Pro at $20/month. For AWS-heavy developers, Q Pro includes features with no Claude equivalent (direct AWS account analysis). For general development, Claude holds the performance edge per dollar.

    The Combined Workflow

    Many AWS developers use Amazon Q for AWS-specific questions (CloudFormation troubleshooting, IAM policy analysis, service limits) and Claude Code for complex coding tasks (architecture, large refactors, code review). The tools are complementary rather than competing.

    Frequently Asked Questions

    Is Amazon Q better than Claude for AWS development?

    For AWS-native questions with real account context: Amazon Q wins. For complex code generation, architecture decisions, and general programming: Claude is stronger. Many AWS developers use both.

    Can Claude access my AWS account?

    Not directly. You can paste CloudFormation templates, error logs, or resource configurations into Claude for analysis. Amazon Q connects directly to your AWS account with appropriate permissions.


    Need this set up for your team?
    Talk to Will →
  • Claude Zapier Automation: 10 Workflows That Save Hours Every Week

    Claude and Zapier together create one of the most flexible automation combinations available in 2026. Through Zapier’s MCP server (mcp.zapier.com), Claude can connect to over 8,000 apps — sending emails, updating CRMs, creating tasks, posting to Slack, and more. This guide covers 10 practical workflows and how to set them up.

    Setting Up Claude + Zapier MCP

    Add Zapier’s MCP server to Claude Desktop by editing your configuration file:

    {
      "mcpServers": {
        "zapier": {
          "url": "https://mcp.zapier.com/api/mcp/a/YOUR_ACCOUNT_ID/mcp",
          "type": "url"
        }
      }
    }

    Find your Zapier MCP URL in your Zapier account under Settings → MCP. Once connected, Claude can trigger any Zap you’ve built in Zapier, ask it to take actions across your connected apps.

    10 High-Value Automation Workflows

    1. Email Triage and Draft Generation

    New email arrives → Zapier sends to Claude → Claude categorizes (urgent/action needed/FYI/spam) and drafts a reply → Draft saved to Gmail or sent to you via Slack for approval.

    2. CRM Note Generation from Calls

    Call recording transcript arrives (from Otter.ai or Fireflies) → Claude generates structured CRM notes (summary, pain points, next steps, deal stage) → Notes automatically posted to Salesforce or HubSpot record.

    3. Social Media Content from Blog Posts

    New WordPress post published → Claude generates LinkedIn post, Twitter/X thread, and Instagram caption → Drafts sent to Buffer or Hootsuite for scheduled publishing.

    4. Meeting Summary and Action Item Distribution

    Meeting transcript uploaded → Claude extracts summary, decisions made, and action items with owners → Summary sent to meeting participants via email, action items created in Asana or Notion.

    5. Customer Support Ticket Drafts

    New support ticket received (Zendesk, Freshdesk) → Claude categorizes the issue and drafts a response → Draft queued for agent review before sending.

    6. Lead Research and Enrichment

    New lead added to CRM → Claude researches company context from provided information → Enriched notes (industry, company size, likely pain points) added to CRM record automatically.

    7. Contract Summary on Receipt

    PDF contract received via email → Claude generates key terms summary (parties, obligations, deadlines, payment terms) → Summary posted to Slack or added to Notion database.

    8. Weekly Report Generation

    Every Friday → Zapier pulls data from your project management tool → Claude generates weekly progress narrative → Report emailed to stakeholders automatically.

    9. Review Response Drafting

    New Google or Yelp review received → Claude drafts a personalized response matching your brand voice → Draft sent to you for approval via email or Slack.

    10. Job Application Screening Summaries

    New application received → Claude summarizes candidate background, flags matches to job requirements, notes potential concerns → Summary added to your ATS or hiring Notion board.

    Frequently Asked Questions

    Do I need Zapier paid plan to use Claude MCP?

    Zapier MCP access requires a paid Zapier plan. Check Zapier’s current pricing for MCP feature availability.

    Can Claude take actions in Zapier automatically without human approval?

    Yes — but for actions like sending emails or creating CRM records, building in a human-approval step (Slack notification with approve/reject) is recommended until you trust the automation’s output quality.


    Need this set up for your team?
    Talk to Will →
  • Claude Pro vs Max: Which Subscription Is Right for You?

    The jump from Claude Pro to Max is a 5x price increase — $20/month to $100/month. Whether it’s worth it depends entirely on how you use Claude and where your current plan fails you. Here’s the data to make that decision.

    What’s Actually Different

    Feature Pro ($20/mo) Max 5x ($100/mo) Max 20x ($200/mo)
    Usage volume Baseline 5x Pro 20x Pro
    Heavy prompts/day ~12 ~60 ~240
    Claude Code No Yes Yes
    Extended thinking Limited Full Full
    Model access Sonnet + Opus Sonnet + Opus Sonnet + Opus

    Key insight: you don’t get different models at Max — you get more of them. The difference is usage capacity and Claude Code access.

    Who Should Stay on Pro

    • You use Claude regularly but not all day — a few substantive sessions per week
    • You’re hitting limits occasionally but not consistently
    • You don’t need Claude Code

    Who Needs Max 5x

    • You hit Pro limits daily and it disrupts your workflow
    • You want Claude Code — only available at Max tiers
    • Claude is your primary work tool, not supplementary

    Who Needs Max 20x

    • Heavy Claude Code user running multi-hour sessions daily
    • Processing massive document volumes — dozens of long PDFs per day
    • You’ve been hitting Max 5x limits regularly

    Frequently Asked Questions

    What does Claude Max include that Pro doesn’t?

    Claude Code access, higher usage limits (5x or 20x), full extended thinking, and higher priority during peak times.

    Is Claude Max worth $100 a month?

    For developers using Claude Code and professionals hitting Pro limits daily: yes. For moderate users: Pro at $20/month is sufficient.


    Need this set up for your team?
    Talk to Will →
  • Claude vs Perplexity: Research Engine vs Reasoning Partner

    Comparing Claude to Perplexity is a category error — they’re not trying to do the same thing. Perplexity is a real-time research engine. Claude is a reasoning partner. Understanding the distinction helps you build the most effective research workflow.

    What Perplexity Does Best

    • Real-time information: Searches the live web, summarizes current events with source links
    • Source citation: Every claim has source links for verification
    • Quick research: Fast sourced answers for “what is X” and “what happened with Y”
    • Academic research: Academic mode searches peer-reviewed papers

    What Claude Does Best

    • Deep reasoning: Complex multi-step analysis and strategic thinking
    • Document synthesis: Upload a 200-page report and ask for analysis — Perplexity cannot do this
    • Writing quality: Significantly stronger long-form writing
    • Code: One of the best coding models. Perplexity is not a coding tool.
    • Private documents: Works with confidential content you upload

    The Hybrid Workflow (Best of Both)

    1. Perplexity first: Rapid research, current information, source discovery
    2. Claude second: Synthesis, analysis, writing. Take what Perplexity found and reason through the implications

    At $20/month each, running both costs $40/month — worth it for professionals who research and write regularly.

    Frequently Asked Questions

    Should I use Claude or Perplexity for research?

    Use Perplexity for finding current information with sources. Use Claude for analyzing, synthesizing, and writing. Ideally, use both — Perplexity first, Claude second.

    Does Claude have real-time web access?

    Not by default. Claude has a knowledge cutoff and doesn’t browse the web in real time unless connected via MCP or specific integrations.


    Need this set up for your team?
    Talk to Will →
  • Claude vs DeepSeek: Performance, Pricing, and Privacy

    DeepSeek emerged as the most disruptive AI development since GPT-4 — a Chinese lab producing frontier-quality models at dramatically lower cost. In 2026, it’s a genuine competitor to Claude in several categories. But the comparison isn’t only about performance. Privacy and data sovereignty matter. This guide covers all three dimensions.

    Performance Comparison

    Benchmark Claude Opus 4.6 DeepSeek
    SWE-bench (coding) 80.8% ~49% (V3), higher for R1
    GPQA Diamond 91.3% Competitive
    Math reasoning Top tier R1 leads on pure math
    Context window 200K tokens 128K tokens

    Claude leads on real-world software engineering and long-document reasoning. DeepSeek R1 is competitive or superior on pure math. For most professional use cases, Claude holds the performance edge.

    Pricing Comparison

    DeepSeek’s API pricing is 10-20x cheaper than Claude’s — roughly $0.27-0.55 per million input tokens vs Claude’s $3-15. For high-volume API applications where cost is the primary constraint, DeepSeek is a serious consideration. The consumer interface is free vs Claude’s $20-200/month paid tiers.

    The Privacy Question

    DeepSeek is a Chinese company. Its data handling is subject to Chinese law, which includes requirements to provide user data to Chinese government authorities under certain circumstances. Multiple national governments have restricted DeepSeek on government systems. For professionals handling confidential client data or sensitive business information, the data sovereignty difference between Anthropic (US-incorporated) and DeepSeek (Chinese-incorporated) is material.

    Choose Claude If You…

    • Handle confidential professional, legal, or medical data
    • Need highest performance on software engineering tasks
    • Require long-document analysis (200K vs 128K context)
    • Need US-based data handling

    Frequently Asked Questions

    Is DeepSeek as good as Claude?

    Competitive on math and logic. Claude leads on SWE-bench software engineering, long documents, and writing quality.

    Is DeepSeek safe to use?

    For general consumer use, immediate risk is low. Professionals handling sensitive data should consider DeepSeek’s Chinese data jurisdiction carefully.


    Need this set up for your team?
    Talk to Will →
  • MCP Servers Explained: Model Context Protocol Tutorial

    Model Context Protocol (MCP) is the most important infrastructure development in Claude’s ecosystem in 2026. It’s an open standard for connecting AI models to external tools, data sources, and services — replacing fragmented one-off integrations with a universal interface. This guide explains what MCP is and how to set up your first server.

    What Is MCP?

    MCP defines a universal interface: any tool that implements the MCP server specification can connect to any AI application implementing the MCP client specification. Build once, connect anywhere. Before MCP, connecting Claude to external systems required custom integration code for every integration — and none of it worked across different AI tools.

    MCP Architecture

    • MCP Host: The AI application (Claude desktop, Claude Code, your custom app)
    • MCP Client: Built into the host; manages connections to servers
    • MCP Server: Lightweight program exposing tools, resources, or prompts

    Setting Up MCP in Claude Desktop

    Go to Settings → Developer → Edit Config. Add your server configuration:

    {
      "mcpServers": {
        "filesystem": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"]
        }
      }
    }

    Restart Claude Desktop. Claude can now read, write, and manage files in your specified directory.

    Popular MCP Servers

    Server What It Does
    Filesystem Read/write local files
    GitHub Manage repos, issues, PRs
    PostgreSQL Query databases
    Slack Read/send messages
    Brave Search Real-time web search
    Zapier Connect to 8,000+ apps

    Frequently Asked Questions

    Is MCP open source?

    Yes. Anthropic open-sourced the MCP specification and official server implementations.

    Do I need to code to use MCP?

    To install existing servers: basic command-line comfort is enough. To build custom servers: TypeScript or Python knowledge required.


    Need this set up for your team?
    Talk to Will →
  • Claude API Tutorial: Python and JavaScript Getting Started

    The Claude API gives you programmatic access to Claude in your own applications and scripts. This guide gets you from zero to a working integration in Python or JavaScript.

    Prerequisites

    • Anthropic account at console.anthropic.com
    • API key from Console → API Keys
    • Python 3.7+ or Node.js 18+

    Installation

    # Python
    pip install anthropic
    
    # JavaScript
    npm install @anthropic-ai/sdk

    Your First API Call (Python)

    import anthropic
    
    client = anthropic.Anthropic(api_key="your-api-key-here")
    
    message = client.messages.create(
        model="claude-sonnet-4-6",
        max_tokens=1024,
        messages=[{"role": "user", "content": "Explain APIs in plain English."}]
    )
    print(message.content[0].text)

    Adding a System Prompt

    message = client.messages.create(
        model="claude-sonnet-4-6",
        max_tokens=1024,
        system="You are a helpful customer support agent for Acme Corp.",
        messages=[{"role": "user", "content": "How do I reset my password?"}]
    )

    Streaming Responses

    with client.messages.stream(
        model="claude-sonnet-4-6",
        max_tokens=1024,
        messages=[{"role": "user", "content": "Write a 500-word blog post about AI."}]
    ) as stream:
        for text in stream.text_stream:
            print(text, end="", flush=True)

    Model Selection

    Model String Best For
    Claude Opus 4.6 claude-opus-4-6 Complex reasoning, coding
    Claude Sonnet 4.6 claude-sonnet-4-6 Balanced everyday tasks
    Claude Haiku 4.5 claude-haiku-4-5-20251001 Fast lightweight tasks

    Frequently Asked Questions

    How much does the Claude API cost?

    Pricing is per token (input and output separately). Check anthropic.com/pricing. Haiku is cheapest, Sonnet offers the best cost/quality balance for most applications.

    Do I need a Claude subscription to use the API?

    No. API access is separate. Create an Anthropic Console account and pay per token used.


    Need this set up for your team?
    Talk to Will →
  • Claude Projects: How to Set Up Your Perfect Knowledge Base

    Claude Projects are the most underutilized feature on paid Claude plans. Without Projects, every new conversation starts from scratch. With Projects, you create persistent knowledge bases that Claude draws on automatically. This guide shows you how to set up Projects that actually improve your work.

    What Claude Projects Do

    • Persistent system prompts: Instructions Claude follows in every Project conversation
    • Knowledge base files: Documents, PDFs, and data Claude references without re-uploading
    • Conversation history: All Project conversations are grouped and accessible
    • Separate memory spaces: Each Project has isolated memory

    Setting Up a Project

    1. In Claude.ai, click “New Project” in the left sidebar
    2. Name your Project specifically (“Content Writing” not “Work”)
    3. Write your system prompt in Project Instructions
    4. Upload knowledge base files
    5. Start a conversation within the Project

    Writing an Effective System Prompt

    A strong system prompt tells Claude: who you are and what you do, primary tasks for this Project, tone and style preferences, output format requirements, domain-specific knowledge to assume, and anything Claude should never do in this Project. A weak system prompt (“You are a helpful assistant”) gives Claude nothing useful.

    Project Ideas by Role

    • Writers: Upload brand voice guide, audience personas, and style examples
    • Developers: Upload architecture docs, API documentation, and coding standards
    • Legal: Upload relevant statutes, prior contracts, and compliance frameworks
    • Researchers: Upload literature review, key papers, and research notes

    Frequently Asked Questions

    Are Claude Projects available on the free plan?

    No. Projects require a Claude Pro subscription or higher.

    Does Claude remember everything across Project conversations?

    Claude has access to Project knowledge base files and system prompt in every conversation. Specific conversation memory depends on whether Claude’s memory feature is enabled.


    Need this set up for your team?
    Talk to Will →