Sketch Engine MCP Server
Connects Claude to Sketch Engine for corpus linguistics and text analysis, enabling queries on collocations, concordances, word usage, and more via natural language.
README
Sketch Engine MCP Server
A tool that connects Claude (AI assistant) to Sketch Engine, enabling powerful corpus linguistics and text analysis directly in your conversations with Claude.


What is This?
This server lets Claude access Sketch Engine's massive text databases (corpora) to help you with linguistic research, language learning, writing, and text analysis. You can ask Claude questions like:
- "What are the most common collocations with 'artificial intelligence'?"
- "Show me how the word 'literally' is used in modern English"
- "Compare how 'affect' and 'effect' are used in academic writing"
Claude will use Sketch Engine's tools to give you detailed, corpus-based answers.
Quick Start
No technical knowledge required! Just download, configure, and go.
Step 1: Download
Download the standalone executable for your system from the releases page:
- Linux:
sketch-engine-mcp-linux-x64 - macOS (Intel):
sketch-engine-mcp-macos-x64 - macOS (Apple Silicon/M1/M2/M3):
sketch-engine-mcp-macos-arm64 - Windows:
sketch-engine-mcp-win-x64.exe
No installation needed! These are standalone executables that work out of the box.
For Linux/macOS: Make it executable
After downloading, open Terminal and run:
chmod +x sketch-engine-mcp-linux-x64
(Replace with your actual filename)
Step 2: Get Your Sketch Engine API Key
You need a free Sketch Engine account:
- Go to https://www.sketchengine.eu
- Click "Register" to create a free account (or log in if you have one)
- After logging in, click your username in the top-right corner
- Select "My Account"
- Find the "API Key" section
- Click "Generate API Key" if you don't have one
- Copy your API key - you'll need it in the next step
Keep this key private! It's like a password for your Sketch Engine account.
Step 3: Configure Claude
You need to tell Claude about this server. Don't worry - it's just editing one configuration file.
Find Your Config File
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Tip for macOS/Linux: Open Terminal and run:
mkdir -p ~/.config/Claude # Create directory if needed
nano ~/.config/Claude/claude_desktop_config.json # Edit file
Add This Configuration
Copy and paste this into the config file:
{
"mcpServers": {
"sketch-engine": {
"command": "/path/to/sketch-engine-mcp-linux-x64",
"env": {
"SKETCH_ENGINE_API_KEY": "your_api_key_here"
}
}
}
}
Replace two things:
/path/to/sketch-engine-mcp-linux-x64- The full path to where you downloaded the executableyour_api_key_here- Your actual API key from Step 2
Example (macOS):
{
"mcpServers": {
"sketch-engine": {
"command": "/Users/yourname/Downloads/sketch-engine-mcp-macos-arm64",
"env": {
"SKETCH_ENGINE_API_KEY": "abc123xyz789"
}
}
}
}
Save the file and restart Claude Desktop (or Claude Code CLI).
Step 4: Try It Out!
Open Claude and try these example questions:
"Use Sketch Engine to list available corpora"
"Find collocations for 'climate change' in the EnTenTen21 corpus"
"Show me concordances for the word 'serendipity'"
If it works, you'll see Claude using the Sketch Engine tools to answer your questions!
What Can You Do?
This server gives Claude access to these Sketch Engine tools:
Core Analysis Tools
- Word Sketches: See how words are typically used (grammatical patterns, collocations)
- Concordances: Find real examples of words or phrases in context
- Word Lists: Generate frequency lists of words in any corpus
- Word Comparison: Compare how two similar words are used differently
- Collocations: Find words that commonly appear together
Advanced Tools
- Frequency Analysis: Analyze how often words/phrases appear
- Keyword Extraction: Find characteristic words by comparing two corpora
- Custom Queries: Run advanced searches using CQL (Corpus Query Language)
Examples of What You Can Ask Claude
"Compare the usage of 'effect' and 'affect' in academic English"
"What are the most common adjectives used with 'solution'?"
"Find examples of 'literally' being used in the EnTenTen corpus"
"Generate a word frequency list for the Susanne corpus"
"Show me concordances for 'break * ice' (phrasal pattern)"
For more detailed examples and workflows, see docs/EXAMPLES.md.
Troubleshooting
"Command not found" or "No such file"
- Check that the path in your config file is correct (use full absolute path)
- On Linux/macOS, make sure you ran
chmod +xon the executable
"Invalid API key" or "Authentication failed"
- Double-check that you copied your API key correctly from Sketch Engine
- Make sure there are no extra spaces in the config file
Claude doesn't show Sketch Engine tools
- Restart Claude Desktop (or Claude Code CLI)
- Check that your config file JSON is valid (use a JSON validator online if needed)
Still having issues?
- See the detailed User Guide for step-by-step instructions with screenshots
- Report issues on GitHub
For Developers
If you want to build from source, contribute, or understand how this works:
- DEVELOPMENT.md - Complete development guide
- CLAUDE.md - AI assistant development instructions
About Sketch Engine
Sketch Engine is a leading corpus management and text analysis tool used by linguists, lexicographers, translators, and language learners worldwide. It provides access to massive text databases (corpora) in 90+ languages.
License
See LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.