accelo-mcp
MCP server exposing Accelo quote tools (list, get, create, update) with per-user OAuth authentication for natural language interaction.
README
accelo-mcp
A Model Context Protocol (MCP) server for Accelo. It exposes Accelo quote tools to MCP clients (such as LibreChat agents) and authenticates per user via Accelo OAuth, so every action respects that user's own Accelo permissions.
Status: early. Tools:
list_quotes,get_quote,create_quote,update_quote.
How auth works
This server is an OAuth proxy:
- To the MCP client it acts as an OAuth Authorization Server (with discovery + dynamic client registration + PKCE).
- To Accelo it acts as an OAuth client (authorization-code grant).
The MCP client never sees the Accelo token. When a user authorizes, they are bounced to Accelo's consent screen; the resulting Accelo access/refresh tokens are stored locally (SQLite) keyed to an opaque subject, and the MCP client is handed one of our opaque tokens that maps back to it. Accelo tokens are refreshed automatically.
Prerequisites
- An Accelo deployment (e.g.
https://YOURDEPLOY.api.accelo.com). - A registered Accelo Web Application (Accelo: Configurations -> API ->
Register Application). Set its redirect URI to:
https://<your-public-host>/oauth/callback - Node 20+ or Docker.
Configuration
Copy .env.example to .env and fill in:
| Var | Description |
|---|---|
ACCELO_CLIENT_ID / ACCELO_CLIENT_SECRET |
From your Accelo Web App |
ACCELO_BASE_URL |
https://YOURDEPLOY.api.accelo.com/api/v0 |
ACCELO_OAUTH_URL |
https://YOURDEPLOY.api.accelo.com/oauth2/v0 |
PUBLIC_BASE_URL |
Public HTTPS URL of this server |
OAUTH_REDIRECT_URI |
<PUBLIC_BASE_URL>/oauth/callback (must match Accelo) |
OAUTH_SCOPE |
Accelo scopes, e.g. read(all) write(all) |
TOKEN_DB_PATH |
SQLite path (default /app/data/tokens.db) |
PORT |
Listen port (default 8787) |
Never commit .env (it is gitignored).
Run
Docker (recommended)
docker compose up -d --build
curl -s http://127.0.0.1:8787/healthz
The compose file publishes only on loopback (127.0.0.1:8787). Put a TLS
reverse proxy (nginx, Caddy, etc.) in front of it for PUBLIC_BASE_URL.
Node
npm install
npm start
Endpoints
| Path | Purpose |
|---|---|
POST /mcp |
MCP streamable-HTTP endpoint (Bearer auth) |
GET /.well-known/oauth-authorization-server |
AS metadata |
GET /.well-known/oauth-protected-resource |
Resource metadata |
POST /register |
Dynamic client registration |
GET /authorize |
Start auth (redirects to Accelo) |
GET /oauth/callback |
Accelo redirect target |
POST /token |
Token + refresh |
GET /healthz |
Health check |
Using with LibreChat
Add an MCP server pointing at https://<your-public-host>/mcp with OAuth
enabled. LibreChat will discover the OAuth endpoints, register a client, and
prompt each user to authorize Accelo on first use.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.