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_summarize_browser.yaml
1.0 KB
schema_version: 1
version: "1.0.0"
last_verified: "2025-12-21"
id: wikipedia_summarize_browser
title: "Summarize (Browser)"
description: "Opens a Wikipedia article, extracts its content, and generates an LLM-powered summary. Supports tldr, concise (default), or detailed styles."
category:
  level: workflow
  domain: research
  reusable: true
params:
  topic: string
  style: string  # Optional: tldr | concise | detailed (default: concise)
policies:
  allowed_domains:
    - wikipedia.org
    - "*.wikipedia.org"
steps:
  # Step 1: Open the Wikipedia article
  - type: workflow.call
    workflow: wikipedia_open
    params:
      topic: "{{topic}}"

  # Step 2: Extract content from the page
  - type: workflow.call
    workflow: wikipedia_extract_content
    as: article

  # Step 3: Generate LLM summary with style
  - type: workflow.call
    workflow: llm_summarize
    params:
      content: "{{article.content}}"
      style: "{{style}}"
    as: result

  # Output the summary
  - type: control.stop
    message: "{{result.summary}}"