verbatim-mcp
Integrates with OpenAI Codex to search papers, ask research questions with verbatim citations, get paper metadata, export BibTeX citations, and browse collections from Verbatim's document collections.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@verbatim-mcpfind papers on attention mechanisms from 2020"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Verbatim MCP Server
An MCP (Model Context Protocol) server for Verbatim — a platform of specialized document collections that returns verbatim, cited answers. ACL Anthology is the default collection; pass collection_ids=[...] to scope to a different collection or query multiple.
Features
Search papers by keywords, authors, venues, and years
Ask research questions and get answers with verbatim citations
Get paper metadata and full content
Export citations in BibTeX format
Browse collections, authors, venues, and years
Collection-aware — all tools accept an optional
collection_idslist (default["anthology"])
Quick Start
Step 1: Get an API Key
Go to verbatim.krlabs.eu
Sign up / Log in
Navigate to API Keys
Create a new API key and copy it
Step 2: Set up the MCP server
Choose the setup that matches your environment:
Setup for Claude Code (CLI)
Option A: Using uvx (no install needed, requires uv)
claude mcp add verbatim --transport stdio \
-e VERBATIM_API_KEY=vb_your_key_here \
-- uvx verbatim-mcpOption B: Using pip (works everywhere)
pip install verbatim-mcp
claude mcp add verbatim --transport stdio \
-e VERBATIM_API_KEY=vb_your_key_here \
-- verbatim-mcpOption C: Config file
Add to ~/.claude.json or your project's .mcp.json:
{
"mcpServers": {
"verbatim": {
"type": "stdio",
"command": "verbatim-mcp",
"args": [],
"env": {
"VERBATIM_API_KEY": "vb_your_key_here"
}
}
}
}Then restart Claude Code or run /mcp to verify.
Setup for Claude Desktop App
Edit your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"verbatim": {
"command": "uvx",
"args": ["verbatim-mcp"],
"env": {
"VERBATIM_API_KEY": "vb_your_key_here"
}
}
}
}Restart Claude Desktop. You should see "verbatim" in the tools menu (hammer icon).
Setup for OpenAI Codex
Option A: Via CLI
codex mcp add verbatim \
-e VERBATIM_API_KEY=vb_your_key_here \
-- uvx verbatim-mcpOption B: Via config file
Edit ~/.codex/config.toml:
[mcp_servers.verbatim]
command = "uvx"
args = ["verbatim-mcp"]
[mcp_servers.verbatim.env]
VERBATIM_API_KEY = "vb_your_key_here"Then restart Codex or run /mcp to verify.
Setup for Cursor / VS Code with Continue
For Cursor or Continue.dev extension, add to your config:
{
"mcpServers": {
"verbatim": {
"command": "uvx",
"args": ["verbatim-mcp"],
"env": {
"VERBATIM_API_KEY": "vb_your_key_here"
}
}
}
}Verify It's Working
In Claude Code, run:
/mcpYou should see verbatim listed with its tools.
Try asking Claude:
"Use verbatim to search for papers about attention mechanisms"
Available Tools
Every collection-aware tool accepts an optional collection_ids: list[str] parameter (default ["anthology"]). verbatim_transform is collection-agnostic — you supply the context.
Tool | Description |
| List collections available to your API key |
| Get metadata for a single collection |
| Ask a research question, get an answer with citations |
| Turn any question + context into a verbatim cited answer (no collection) |
| Search papers by keywords and filters. Pass |
| Get metadata for a specific paper |
| Get full text of a paper |
| Get BibTeX citation |
| Search authors by name |
| Browse publication venues |
| Browse proceedings/booktitles |
| List available publication years |
Example Prompts
Once configured, try these with Claude:
"Search for papers about transformer efficiency from 2023"
"What does the research say about attention mechanisms?"
"Find papers by Ashish Vaswani"
"Get the BibTeX citation for that paper"
"List the top venues in the corpus"
Environment Variables
Variable | Description | Default |
| Your API key (required) | - |
| API base URL |
|
Troubleshooting
"Failed to reconnect to verbatim"
If using
uvx, make sure uv is installed:curl -LsSf https://astral.sh/uv/install.sh | shAlternatively, use pip instead:
pip install verbatim-mcpand replaceuvx verbatim-mcpwith justverbatim-mcpin your config
"VERBATIM_API_KEY environment variable is required"
Make sure you added the
-eflag orenvblock with your API key
Server not showing in /mcp
Restart Claude Code:
claude(exit and reopen)Check config syntax:
claude mcp list
"API error (401): Unauthorized"
Your API key is invalid or expired
Generate a new one at verbatim.krlabs.eu/api-keys
"API error (429): Rate limit"
You've exceeded your query limit
Check usage at verbatim.krlabs.eu/api-keys
Compatibility
MCP (Model Context Protocol) is supported by:
Claude Code (CLI) -
~/.claude.jsonClaude Desktop App -
claude_desktop_config.jsonOpenAI Codex -
~/.codex/config.tomlCursor - built-in MCP support
Continue.dev - VS Code/JetBrains extension
License
MIT License - see LICENSE for details.
Links
Verbatim - The RAG service
MCP Documentation - Learn about MCP
Claude Code - Claude's coding assistant
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KRLabsOrg/verbatim-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server