W

Knowledge Pack Files

Wikipedia Knowledge Pack Files

Browse the source files that power the Wikipedia MCP server knowledge pack.

Available free v1.0.0 Browser LLM
$ sidebutton install wikipedia.org
Download ZIP
wikipedia_open.yaml
581 B
schema_version: 1
version: "1.0.0"
last_verified: "2025-12-21"
id: wikipedia_open
title: "Open Article"
description: "Navigate to a Wikipedia article by topic and wait for the page to load"
category:
  level: primitive
  domain: research
  reusable: true
params:
  topic: string
policies:
  allowed_domains:
    - wikipedia.org
    - "*.wikipedia.org"
steps:
  # Navigate to Wikipedia article
  - type: browser.navigate
    url: "https://en.wikipedia.org/wiki/{{topic}}"

  # Wait for article content to load
  - type: browser.wait
    selector: "#firstHeading"
    timeout: 10000