Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A Model Context Protocol server that provides access to knowledge base documents from GitHub repositories.

README.md

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, 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

  1. Push your code to GitHub
  2. Connect your repository to your chosen hosting platform
  3. Add environment variables:
  • GITHUB_TOKEN (optional, for higher API rate limits)
  • MCP_AUTH_TOKEN (optional, for securing access to your MCP server)
  1. 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 build and 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_TOKEN is not set, the server accepts all requests (useful for local development or private networks)
  • When MCP_AUTH_TOKEN is set, clients must provide this token in the Authorization header
  • The server accepts both Bearer <token> and <token> formats

Setting Up Authentication

  1. Generate a secure random token (e.g., openssl rand -hex 32)
  2. Set the MCP_AUTH_TOKEN environment variable on your hosting platform
  3. 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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.