Acornio Server
FreeNot checkedA Model Context Protocol server that provides access to knowledge base documents from GitHub repositories.
About
A Model Context Protocol server that provides access to knowledge base documents from GitHub repositories.
README
A Model Context Protocol (MCP) server that provides access to knowledge base documents from GitHub repositories.
Features
- 4 Tools:
listKnowledgeBases,listDocuments,searchDocuments,getDocument - Multiple 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.)
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 build - Fly.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:.next - Self-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 theAuthorizationheader - The 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 platform - Configure 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_TOKEN |
GitHub personal access token for higher API rate limits (60/hr → 5000/hr) | No |
MCP_AUTH_TOKEN |
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.app - Railway:
your-app.railway.app - Netlify:
your-app.netlify.app - Custom domain:
your-domain.com
Local Development
npm install
npm run dev
Server 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
Installing Acornio Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/mchlkucera/acornio-mcpFAQ
Is Acornio Server MCP free?
Yes, Acornio Server MCP is free — one-click install via Unyly at no cost.
Does Acornio Server need an API key?
No, Acornio Server runs without API keys or environment variables.
Is Acornio Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Acornio Server in Claude Desktop, Claude Code or Cursor?
Open Acornio Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Acornio Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
