Skip to main content
ClaudeWave

MCP server for the XKnow Knowledge Base — search and explore curated SEO, SaaS, and LLM-wiki knowledge from any AI agent. Local, no API key, MIT.

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/12/2026
Install in Claude Code / Claude Desktop
Method: NPX · xknow-mcp
Claude Code CLI
claude mcp add xknow-mcp -- npx -y xknow-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "xknow-mcp": {
      "command": "npx",
      "args": ["-y", "xknow-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# xknow-mcp

[![npm](https://img.shields.io/npm/v/xknow-mcp.svg)](https://www.npmjs.com/package/xknow-mcp)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![MCP](https://img.shields.io/badge/MCP-server-8A2BE2)](https://modelcontextprotocol.io)

An MCP server for the **[XKnow Knowledge Base](https://xknow.org/mcp)** — a curated,
cross-linked body of **SEO, SaaS, and LLM-wiki** knowledge. Give any MCP-capable agent
(Claude, Cursor, Cline, opencode, and others) the ability to **search and cite** it.

- **Local and private.** Runs on your machine over stdio. No server, no account, no API key.
- **Static data.** The free layer is a snapshot of the public XKnow guides, bundled with the
  package. Nothing is fetched at query time.
- **Graph-aware.** Beyond keyword search, `explore_concept` walks the cross-links between
  notes, so an agent can follow a topic instead of getting a flat list.

## Quick start

Add it to your MCP client.

**Claude Desktop** (`claude_desktop_config.json`), **Cursor**, **Cline**, and most clients:

```json
{
  "mcpServers": {
    "xknow": {
      "command": "npx",
      "args": ["-y", "xknow-mcp"]
    }
  }
}
```

**Claude Code**

```bash
claude mcp add xknow -- npx -y xknow-mcp
```

**opencode** (`opencode.json`)

```json
{
  "mcp": {
    "xknow": { "type": "local", "command": ["npx", "-y", "xknow-mcp"], "enabled": true }
  }
}
```

Then ask your agent something like:

> "Use the xknow tools to explain keyword difficulty and cite the source."
> "Search XKnow for SaaS pricing models and summarise the trade-offs."

## Tools

| Tool | What it does |
| --- | --- |
| `search_knowledge` | Ranked search over the knowledge base. Returns titles, snippets, and URLs. |
| `get_page` | Full text of one note by title or slug (preserves `[[wikilinks]]`). |
| `explore_concept` | A note plus its outbound links and backlinks — walks the knowledge graph. |
| `list_topics` | Lists every note grouped by section (`seo`, `saas`, `blog`). |
| `lint_rules` | The XKnow SEO/SaaS content self-check rubric — each rule with priority (P0–P3), reasoning, fix, and the knowledge-base notes that back it. |
| `cite` | Returns the canonical citation (title, description, URL) for a note. |

## Two knowledge layers

| Layer | Content | How |
| --- | --- | --- |
| **Free** (default) | The 57 public XKnow guides and blog posts | Bundled snapshot — just `npx -y xknow-mcp` |
| **Full vault** | Your purchased XKnow Knowledge Base (500+ linked notes) | `npx -y xknow-mcp --vault /path/to/SEO-SaaS-Vault` |

The full-vault mode reads a local folder of Markdown notes, so your purchased copy never
leaves your machine. Set it once with the `XKNOW_VAULT` environment variable if you prefer:

```bash
export XKNOW_VAULT="/path/to/SEO-SaaS-Vault"
npx -y xknow-mcp
```

## How it works

`xknow-mcp` is a Node.js stdio server. The free layer is a static JSON snapshot generated
from the public site and bundled in the package (`data/knowledge.json`); search is a small,
dependency-free ranking pass over the bundled notes. Vault mode parses Markdown notes from
a local folder on the fly. No network calls, no vector database, no telemetry.

## Development

```bash
npm install
npm run build:data   # refresh data/knowledge.json from https://xknow.org/mcp/knowledge.json
npm run build        # tsc
npm run smoke        # exercise every tool over a real stdio connection

# also test against a local vault
SMOKE_VAULT=/path/to/SEO-SaaS-Vault npm run smoke
```

## Links

- Product page: https://xknow.org/mcp
- Knowledge base: https://xknow.org/vaults/seo
- Registry: https://registry.modelcontextprotocol.io/servers/io.github.techreone/xknow-mcp
- Source: https://github.com/techreone/xknow-mcp

## License

MIT — see [LICENSE](LICENSE).

Lo que la gente pregunta sobre xknow-mcp

¿Qué es techreone/xknow-mcp?

+

techreone/xknow-mcp es mcp servers para el ecosistema de Claude AI. MCP server for the XKnow Knowledge Base — search and explore curated SEO, SaaS, and LLM-wiki knowledge from any AI agent. Local, no API key, MIT. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-12.

¿Cómo se instala xknow-mcp?

+

Puedes instalar xknow-mcp clonando el repositorio (https://github.com/techreone/xknow-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar techreone/xknow-mcp?

+

Nuestro agente de seguridad ha analizado techreone/xknow-mcp y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene techreone/xknow-mcp?

+

techreone/xknow-mcp es mantenido por techreone. La última actividad registrada en GitHub es del 2026-09-12, con 0 issues abiertos.

¿Hay alternativas a xknow-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega xknow-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: techreone/xknow-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/techreone-xknow-mcp)](https://claudewave.com/repo/techreone-xknow-mcp)
<a href="https://claudewave.com/repo/techreone-xknow-mcp"><img src="https://claudewave.com/api/badge/techreone-xknow-mcp" alt="Featured on ClaudeWave: techreone/xknow-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a xknow-mcp