Beever MCP Server

Open-source LLM knowledge base: team chat into a typed knowledge graph and auto-generated wiki.

Local serverstdioPython

What is the Beever MCP server?

Open-source LLM knowledge base: team chat into a typed knowledge graph and auto-generated wiki. Exposed over MCP by the beever mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Its toolset

Everything the assistant can do here goes through one of these:

  • Key — Purpose
  • GOOGLE_API_KEY — Gemini — extraction, entity graph, answers
  • JINA_API_KEY — Jina v4 embeddings (2048-dim) for semantic search
  • TAVILY_API_KEY — External web search when QA retrieval confidence is low — tavily.com
  • OLOSTEP_API_KEY — Olostep web search (alternative to Tavily). Set WEB_SEARCH_PROVIDER=olostep in your .env — olostep.com/dashboard
  • Service — Port
  • Backend — :8000
  • Bot — :3001
  • Weaviate — :8080
  • Neo4j — :7474 / :7687
  • MongoDB — :27017
  • Redis — :6380

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration

You will need 8 environment variables: GOOGLE_API_KEY, JINA_API_KEY, TAVILY_API_KEY, OLOSTEP_API_KEY, CREDENTIAL_MASTER_KEY, WEAVIATE_API_KEY, BEEVER_LLM_API_KEY, VITE_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Beever's toolset — Key, GOOGLE_API_KEY, JINA_API_KEY and 9 more — is a fair guide to whether it matches your workflow. It is maintained by Beever-AI; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Beever's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 12 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Beever.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the beever mcp server does with a few real requests.

Available tools

ToolWhat it does
KeyPurpose
GOOGLE_API_KEYGemini — extraction, entity graph, answers
JINA_API_KEYJina v4 embeddings (2048-dim) for semantic search
TAVILY_API_KEYExternal web search when QA retrieval confidence is low — [tavily.com](https://tavily.com/)
OLOSTEP_API_KEYOlostep web search (alternative to Tavily). Set WEB_SEARCH_PROVIDER=olostep in your .env — [olostep.com/dashboard](https://www.olostep.com/dashboard)
ServicePort
Backend:8000
Bot:3001
Weaviate:8080
Neo4j:7474 / :7687
MongoDB:27017
Redis:6380

How to install the Beever MCP server

{
  "mcpServers": {
    "beever-atlas": {
      "url": "https://atlas.example.com/mcp",
      "transport": "streamable-http",
      "headers": {
        "Authorization": "Bearer ${BEEVER_MCP_KEY}"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GOOGLE_API_KEYCredential the server authenticates with.Yes
JINA_API_KEYCredential the server authenticates with.Yes
TAVILY_API_KEYCredential the server authenticates with.Yes
OLOSTEP_API_KEYCredential the server authenticates with.Yes
CREDENTIAL_MASTER_KEYCredential the server authenticates with.Yes
WEAVIATE_API_KEYCredential the server authenticates with.Yes
BEEVER_LLM_API_KEYCredential the server authenticates with.Yes
VITE_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Beever to Key.
  • Use Beever to GOOGLE API KEY.
  • Use Beever to JINA API KEY.

Frequently asked questions

It connects Beever to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (Key, GOOGLE_API_KEY, JINA_API_KEY, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Beever directly.