$ timeahead_
blog/MCP Server Showdown: Docs, Brave, Obsidian & Tavily Compared

MCP Server Showdown: Docs, Brave, Obsidian & Tavily Compared

May 10, 2026by Max

Comparing four popular MCP servers

This comparison looks at four widely-used MCP servers serving different niches: @arabold/docs-mcp-server for documentation retrieval, @brave/brave-search-mcp-server and tavily-mcp for web search, and obsidian-mcp-server for personal knowledge bases. All four are distributed via npm and ship under permissive licenses, but their adoption curves, code freshness, and risk profiles diverge sharply. The numbers below come from a single registry/repo snapshot and are presented without adjustment.

Overall score (0-100)@arabold/docs-mcp-server85.6@brave/brave-search-mcp-server63.4obsidian-mcp-server62.6tavily-mcp65.5

Score breakdown

ServerOverallSecurityFreshnessAdoptionQualityTrustRisk
@arabold/docs-mcp-server85.6100.0100.063.180.050.0high
@brave/brave-search-mcp-server63.4100.030.049.460.050.0medium
obsidian-mcp-server62.6100.030.045.560.050.0unknown
tavily-mcp65.5100.030.059.860.050.0unknown

Security & risk

All four servers post a perfect security score of 100.0 and ship with a license. But the headline number hides an important detail:

  • @arabold/docs-mcp-server reports secrets_found = 1 and is classified as risk_class: high despite its top overall score of 85.6. It also reads and writes the local filesystem and makes network calls, expanding its blast radius. Audit the repo for the leaked secret and rotate any related credentials before deploying it in a sensitive environment.
  • @brave/brave-search-mcp-server is classified medium risk with no secrets found and a network-only capability surface (no filesystem access).
  • obsidian-mcp-server and tavily-mcp are both risk_class: unknown — capability flags (filesystem, network, tool count) are null, so the static profile is incomplete. Treat them as you would any unaudited server: review tool permissions before granting access.

Adoption & activity

ServerWeekly downloadsGitHub starsLast commitTool count
@arabold/docs-mcp-server4701,32213 days ago10
@brave/brave-search-mcp-server16,6670unknown0
obsidian-mcp-server10,7240unknownunknown
tavily-mcp36,3740unknownunknown

The picture inverts when you look at usage versus repo signals. tavily-mcp leads weekly downloads at 36,374, followed by @brave/brave-search-mcp-server (16,667) and obsidian-mcp-server (10,724). @arabold/docs-mcp-server ships only 470 weekly downloads but has by far the most stars (1,322) and the only verified recent commit (13 days). The zero-star figures on the other three are unusual and likely reflect that the recorded GitHub repo is a monorepo or mirror — not a true lack of interest, given the download volume.

Install commands

npx @arabold/docs-mcp-server
npx @brave/brave-search-mcp-server
npx obsidian-mcp-server
npx tavily-mcp

Recommendation

These tools serve different jobs, so the right pick depends on what you need:

  • For web search: tavily-mcp wins on adoption (36,374 weekly downloads, score 65.5) and is the safe default. @brave/brave-search-mcp-server is a reasonable alternative if you prefer Brave's index, but its tool_count of 0 in this snapshot is worth verifying against the upstream repo before integration.
  • For Obsidian vaults: obsidian-mcp-server is the only contender here. Its 10,724 weekly downloads suggest real usage, but the unknown risk class and null capability flags mean you should review what it can read and write before pointing it at a personal vault.
  • For documentation retrieval: @arabold/docs-mcp-server has the highest overall score (85.6), the freshest commits, and the only non-zero star count — but the secrets_found = 1 flag and high risk classification mean it should not be deployed as-is. If you need its functionality, fork the repo, audit for the leaked secret, and pin to a clean commit.

Overall winner on raw score: @arabold/docs-mcp-server at 85.6 — but with the explicit caveat above. Winner on safe, ready-to-use adoption: tavily-mcp.

← back to blog