openapi-mcp-server
About
An MCP (Model Context Protocol) server that provides a standardized interface to the Letta API, enabling AI agents to manage tools, sources, and agents through MCP-compatible consumers like Claude.js.
Details
- Author
- MCP-Mirror
- Downloads
- 149
- Categories
- Other, API
Jump to
- Exposes Letta API endpoints as MCP tools (tools, sources, agents)
- Supports CRUD operations for custom tools and Composio integrations
- Manages data sources and file uploads
- Lists and manages MCP servers and their tools
- Provides agent lifecycle management (create, export, import)
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
openapi-mcp-serverCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install dependencies with npm install, copy .env.example to .env, configure the required API_BASE_URL and authorization details, then run npm start or npm run start:ts. Connect from any MCP-compatible client using stdin/stdout transport.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"openapi-mcp-server": {
"elijahdev0_mcp-server": {
"command": "node",
"args": [
"server.js"
]
}
}
}
}
McpServers
{
"elijahdev0_mcp-server": {
"command": "node",
"args": [
"server.js"
]
}
}
openapi-mcp-server
Model Context Protocol (MCP) server for Letta API.
Description
This server provides a Model Context Protocol (MCP) interface to the API.
Installation
1. Install dependencies:
npm install
2. Create a .env file based on .env.example:
cp .env.example .env
3. Edit the .env file to add your API configuration and authorization details.
Configuration
The following environment variables can be configured in the .env file:
- API_BASE_URL: Base URL for the API (required)
- SERVER_NAME: Name of the MCP server (default: "openapi-mcp-server")
- SERVER_VERSION: Version of the MCP server (default: "1.0.0")
- DEBUG: Enable debug logging (true/false) (default: false)
Usage
Running the Server
The server is provided as both JavaScript and TypeScript versions:
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




