For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Guides
    • Introduction
    • Quick Start
    • Use Cases
    • MCP Server
  • API
    • Enrich Endpoint
  • Integrations
    • Clay
    • Zapier
    • Make
    • HubSpot
    • Salesforce
    • n8n
  • Platform
    • API Keys
    • Rate Limits
    • Pricing
  • Support
    • Support
  • API Reference
    • GETGet platform stats
    • GETSearch case studies
    • POSTSemantic search
    • POSTBatch semantic search
    • GETGet case study
    • GETList companies
    • GETGet company
    • GETCompany analysis
    • GETCompany timeline
    • POSTCompare vendors
    • POSTRegister for an API key
Logocasestudies.dev
On this page
  • What is MCP?
  • Setup
  • Claude Desktop
  • Claude Code
  • Requirements
  • Available tools
  • Example prompts
  • Source code
Guides

MCP Server

Was this page helpful?
Previous

Enrich

Next
Built with

Give your AI agents direct access to case study search, company analysis, and vendor comparison.

What is MCP?

Model Context Protocol (MCP) lets AI agents use external tools. The casestudies.dev MCP server gives any MCP-compatible agent (Claude Desktop, Claude Code, ChatGPT with plugins, custom agents) access to our full API through natural conversation.

Setup

Claude Desktop

Add to your claude_desktop_config.json:

1{
2 "mcpServers": {
3 "casestudies": {
4 "command": "python",
5 "args": ["/path/to/mcp-server/server.py"],
6 "env": {
7 "CASESTUDIES_API_KEY": "cs_live_your_key_here"
8 }
9 }
10 }
11}

Claude Code

$claude mcp add casestudies python /path/to/mcp-server/server.py -e CASESTUDIES_API_KEY=cs_live_xxx

Requirements

  • Python 3.10+
  • httpx (pip install httpx)
  • A casestudies.dev API key

Available tools

ToolWhat it does
search_case_studiesSemantic search with natural language queries
get_case_studyGet full details of a specific case study
search_companiesFind companies by name or industry
get_company_analysisCompetitor analysis — top industries, clients, outcomes
compare_vendorsSide-by-side comparison of up to 5 companies
get_company_timelineChronological view for due diligence

Example prompts

Once connected, just ask:

  • “Find case studies about companies that improved onboarding conversion”
  • “What industries does Checkout.com serve? Show me their notable clients”
  • “Compare GoCardless, Checkout.com, and Paddle for ecommerce payments”
  • “Show me how fintech companies have reduced customer churn”

Source code

The MCP server is open source: github.com/casestudies-dev/casestudies/mcp-server