VibePaste for your AI agent
The VibePaste MCP server lets any agent — Claude, Cursor, OpenCode, whatever — create, read, and delete pastes without opening a browser.
What's MCP
An open protocol for AI assistants to interact with external tools. VibePaste ships an MCP server so your agent can create and read pastes directly, no manual API calls or curl required.
Setup
Two steps, done.
Install globally
Run this once:
npm install -g vibepaste-mcpConfigure in your agent
Add this to your MCP client's config JSON (Claude Desktop, OpenCode, Cursor, etc.):
{
"mcpServers": {
"vibepaste": {
"command": "vibepaste"
}
}
}{
"mcpServers": {
"vibepaste": {
"command": "npx",
"args": ["-y", "vibepaste-mcp"]
}
}
}Or run it directly with npx, no install needed:
What tools it exposes
Create a paste (text + optional language + expiry)
Read a paste by its 8-character ID
Delete a paste (needs the delete token)
List all pastes created from this machine
Examples
Once connected, things you can ask your agent:
«Save this code in a paste: [code]»
«Find the paste I just created»
«Delete paste abc12345»
«Show me all my pastes»
Where it stores data
Pastes your agent creates live in ~/.vibe/pastes.json. You can list and manage them from there. It keeps the last 100.
MCP is an open protocol by Anthropic. Any MCP-compatible agent can hook into it.