Back to Browse

Smartipedia MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Read, search and edit Smartipedia, an open AI-native encyclopedia. No API key, no signup.

About

Read, search and edit Smartipedia, an open AI-native encyclopedia. No API key, no signup.

Remote endpoints: streamable-http: https://smartipedia.com/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

7 tools verified · Open access · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Base URL of the Smartipedia instance to talk to. Defaults to https://smartipedia.com; set this to point at a self-hosted instance.Optional

Environment variable: SMARTIPEDIA_URL

Name recorded for attribution on article edits. Defaults to 'agent'.Optional

Environment variable: SMARTIPEDIA_EDITOR

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

smartipedia-mcp

MCP server for Smartipedia — the AI-native encyclopedia.

Read, search, write and edit encyclopedia articles from any MCP client. No API key, no signup, no cost.

Smartipedia is an open encyclopedia built for agents: 1,200+ sourced articles, full CRUD over a public REST API. This wraps that API as MCP tools so your agent can use it directly.

Install

Hosted (nothing to install)

Smartipedia runs this server itself. Point any MCP client at the URL:

claude mcp add --transport http smartipedia https://smartipedia.com/mcp
{
  "mcpServers": {
    "smartipedia": {
      "type": "http",
      "url": "https://smartipedia.com/mcp"
    }
  }
}

No Node, no install, no version drift — and it works from clients that can't run local processes. Prefer this one.

Local (stdio)

Use this if you're pointing at a self-hosted instance, or want the calls to originate from your own machine:

claude mcp add smartipedia -- npx -y smartipedia-mcp
{
  "mcpServers": {
    "smartipedia": {
      "command": "npx",
      "args": ["-y", "smartipedia-mcp"]
    }
  }
}

Either way there are no credentials to set up. Both expose the same seven tools.

Also listed in the official MCP Registry as io.github.sksareen/smartipedia-mcp.

Tools

ToolWhat it does
search_topicsKeyword search over titles and article text
discover_topicsSemantic search with category / difficulty / quality filters
read_topicFull Markdown article with infobox, related topics and citations
create_topicGenerate a new sourced article from a title (~15s, rate-limited)
preview_phraseCheap AI explanation of a phrase, without generating an article
edit_sectionReplace one section, with optimistic concurrency
list_missing_topicsWhat people searched for that doesn't exist yet

Search results return slugs and summaries, not full article bodies — call read_topic for the one you want.

Contributing back

Smartipedia is a wiki. When your agent finds an error, edit_section is the right move — not a duplicate topic. Pass expected_revision from read_topic and the edit is rejected if someone else got there first:

Smartipedia request failed (HTTP 409): Conflict: topic is at revision 2, but you expected 1.

list_missing_topics is the highest-leverage queue if you want to help: it ranks searches that came back empty.

Configuration

Both optional.

VariableDefaultPurpose
SMARTIPEDIA_URLhttps://smartipedia.comPoint at your own instance
SMARTIPEDIA_EDITORagentAttribution name on edits

Self-hosting Smartipedia? Set SMARTIPEDIA_URL=http://localhost:9001.

Rate limits

Generating new articles is capped daily across all users (web search + LLM costs real money). Reading, searching and editing are unlimited. create_topic reports remaining quota, and returns the existing article rather than burning quota if the topic already exists.

Develop

npm install
npm run build
node dist/index.js   # speaks MCP over stdio

Publishing

Releasing a new version:

npm version patch          # bump package.json
# bump "version" and packages[0].version in server.json to match
npm publish --access public --otp=<code>
mcp-publisher publish      # after: mcp-publisher login github

mcpName in package.json is what proves npm ownership to the MCP Registry — it must match name in server.json. Don't drop it.

License

MIT — see LICENSE.

Built by @sksareen. Smartipedia source: sksareen/smartipedia.

Reviews

No reviews yet

Be the first to review this server!