refinery-mcp
v1.1.0
Published
MCP server for Refinery - manage your saved ChatGPT quotes
Maintainers
Readme
Refinery MCP Server
MCP server for managing ChatGPT quotes, columns, and conversations.
Installation
npm install -g refinery-mcpSetup
Generate an API key in the web app:
- Open refinery.my
- Click "API" in the header
- Click "Generate" to create a new key
- Copy the key (you won't see it again!)
Add to your Claude config (
~/.claude.jsonor Claude Code settings):
{
"mcpServers": {
"refinery": {
"command": "refinery-mcp",
"env": {
"REFINERY_API_KEY": "your-key-here"
}
}
}
}Available Tools
Conversations
list_conversations— List all conversations with quote countsget_conversation— Get conversation with columns and quotes
Columns
list_columns— List columns for a conversationcreate_column— Create a new columnrename_column— Rename a columndelete_column— Delete a column (moves quotes to first column)reorder_columns— Change column order
Quotes
list_quotes— List quotes (filter by conversation/column)search_quotes— Search quotes by textmove_quote— Move quote to another columnmove_quotes_bulk— Move multiple quotes at oncedelete_quote— Delete a quote
Examples
"Show me all my conversations" "Find quotes mentioning React" "Create a column called 'Important' in conversation X" "Move all quotes about testing to the 'QA' column"
