How to use Langbase Remote MCP server

Interact with Pipes and Memory Agents seamlessly with Langbase MCP Server


Model Context Protocol (MCP) is an open protocol that standardizes how applications connect and share data, tools, and other resources with Large Language Models (LLMs).

Langbase provides a fully compliant Remote MCP server at mcp.langbase.com/sse, supporting seamless authentication via the official Remote MCP specification.

You can do the following with the Langbase Remote MCP server:

ToolDescription
create-pipe-agentCreates a new pipe agent
run-pipe-agentRuns a pipe agent
list-pipe-agentsLists all existing pipe agents
update-pipe-agentUpdates an existing pipe agent
create-memoryCreates a new memory
list-memoriesLists all existing memories
upload-document-memoryUploads documents to memory
retrieve-memoryRetrieves similar chunks from memory
list-memory-documentsLists documents from memory
delete-memoryDelete a memory

We will setup the Langbase Remote MCP Server on any of the IDEs below and Claude Desktop.

  1. Open Cursor settings
  2. Navigate to the Tools and Integrations
  3. Click on the + button to add a New MCP Server
  4. Paste the following configuration in the mcp.json file:

mcp.json

{ "mcpServers": { "Langbase MCP Server": { "command": "npx", "args": [ "-y", "mcp-remote", "https://mcp.langbase.com/sse" ] } } }
Info

You may need to restart the IDE or Claude Desktop for the MCP server to take effect.

Now that you have set up the MCP server, here are some example queries you can try:

Example queries

Give me an overview of all the Pipes and Memory Agents

Example queries

Create an AI Support agent pipe that uses my docs as memory for autonomous AutoRAG

Example queries

Upload this document to memory named 'langbase-info'

  • Check out examples of what you can build using Langbase MCP server.
  • Join our Discord community for feedback, requests, and support.