Acornio MCP Server
Provides tools to list, search, and retrieve markdown documents from GitHub repositories configured as knowledge bases.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Acornio MCP Serverlist documents in the vision knowledge base"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Acornio MCP Server
A Model Context Protocol (MCP) server that provides access to knowledge base documents from GitHub repositories.
Features
4 Tools:
listKnowledgeBases,listDocuments,searchDocuments,getDocumentMultiple Knowledge Bases: Supports multiple GitHub repositories as knowledge sources
Auto-discovery: Automatically discovers markdown documents in configured repositories
Stateless: Works on any hosting platform (Railway, Vercel, etc.)
Related MCP server: GitHub Tools MCP Server
Deployment
This is a Next.js application that can be deployed to any platform that supports Next.js.
Quick Deploy Options
Vercel: Connect your GitHub repo and deploy with one click
Railway: Connect your repo and Railway auto-detects Next.js
Netlify: Connect your repo and configure build command:
npm run buildFly.io: Use the Next.js template
Any Node.js host: Run
npm run build && npm start
Deployment Steps
Push your code to GitHub
Connect your repository to your chosen hosting platform
Add environment variables:
GITHUB_TOKEN(optional, for higher API rate limits)MCP_AUTH_TOKEN(optional, for securing access to your MCP server)
Deploy! The platform should auto-detect Next.js and configure accordingly
Platform-Specific Notes
Vercel: Zero configuration needed, just connect and deploy
Railway: Auto-detects Next.js, no additional config required
Netlify: May need to set build command:
npm run buildand publish directory:.nextSelf-hosted: Ensure Node.js 18+ is installed and set
NODE_ENV=production
Configuration
Edit app/api/[transport]/route.ts to configure your knowledge bases:
const KNOWLEDGE_BASES = [
{
id: 'vision',
name: 'My Knowledge Base',
description: 'Description of knowledge base',
owner: 'github-username',
repo: 'repo-name',
branch: 'main',
path: './docs', // path to markdown files
},
// Add more...
];Security & Authentication
This MCP server supports optional token-based authentication to secure access to your knowledge bases.
How It Works
When
MCP_AUTH_TOKENis not set, the server accepts all requests (useful for local development or private networks)When
MCP_AUTH_TOKENis set, clients must provide this token in theAuthorizationheaderThe server accepts both
Bearer <token>and<token>formats
Setting Up Authentication
Generate a secure random token (e.g.,
openssl rand -hex 32)Set the
MCP_AUTH_TOKENenvironment variable on your hosting platformConfigure your MCP client with the same token (see examples below)
Best Practices
Use a strong, randomly-generated token (at least 32 characters)
Keep your token secret and never commit it to version control
Rotate your token periodically
Use HTTPS for all production deployments to protect the token in transit
Environment Variables
Variable | Description | Required |
| GitHub personal access token for higher API rate limits (60/hr → 5000/hr) | No |
| Authentication token for securing MCP server access. When set, clients must provide this token in the Authorization header. | No |
Connect to MCP Client
Cursor / Claude Desktop
Add to your MCP config (replace https://your-app.example.com with your deployed URL):
{
"mcpServers": {
"acornio-knowledge": {
"url": "https://your-app.example.com/api/mcp"
}
}
}If you've configured MCP_AUTH_TOKEN, add authentication:
{
"mcpServers": {
"acornio-knowledge": {
"url": "https://your-app.example.com/api/mcp",
"headers": {
"Authorization": "Bearer your_token_here"
}
}
}
}Or use mcp-remote for stdio transport:
{
"mcpServers": {
"acornio-knowledge": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://your-app.example.com/api/mcp"]
}
}
}With authentication:
{
"mcpServers": {
"acornio-knowledge": {
"command": "npx",
"args": ["-y", "mcp-remote", "--header", "Authorization: Bearer your_token_here", "https://your-app.example.com/api/mcp"]
}
}
}Note: Replace your-app.example.com with your actual deployment URL:
Vercel:
your-app.vercel.appRailway:
your-app.railway.appNetlify:
your-app.netlify.appCustom domain:
your-domain.com
Local Development
npm install
npm run devServer runs at http://localhost:3000/api/mcp
Available Tools
listKnowledgeBases
Lists all configured knowledge bases and their document counts.
listDocuments
Lists all documents, optionally filtered by knowledge base.
searchDocuments
Searches for documents by name/title across knowledge bases.
getDocument
Retrieves the full content of a specific document.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mchlkucera/acornio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server