requarks-wiki-mcp: Skill for Claude Code

.claude/skills/integration-test/SKILL.md

integration-test is a skill for Claude Code from uyu423/requarks-wiki-mcp. It costs 51 tokens per session (1,893 once invoked), scanned A, original, MIT.

A procedure for testing a Wiki.js MCP server against a real Wiki.js site. Wiki.js is a web-based knowledge-base application, and MCP connects assistants to tools.

In plain words
What is it for?
Use it to build the project and test all 29 MCP tools in read-only mode, with optional tests for creating, updating, and deleting a test page.
Why use it?
It checks the server end to end, including its responses and error handling, before you rely on it.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is uyu423/requarks-wiki-mcp's own configuration. It tells Claude Code how to work on requarks-wiki-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything requarks-wiki-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to uyu423/requarks-wiki-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/uyu423/requarks-wiki-mcp/develop/.claude/skills/integration-test/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/uyu423/requarks-wiki-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for integration-test

README.md
[![agentmods](https://agentmods.dev/badge/skills/uyu423/requarks-wiki-mcp/integration-test/github.svg)](https://agentmods.dev/skills/uyu423/requarks-wiki-mcp/integration-test)
Your own site
<a href="https://agentmods.dev/skills/uyu423/requarks-wiki-mcp/integration-test"><img src="https://agentmods.dev/badge/skills/uyu423/requarks-wiki-mcp/integration-test/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for integration-test

Your own site · 80×15
<a href="https://agentmods.dev/skills/uyu423/requarks-wiki-mcp/integration-test"><img src="https://agentmods.dev/badge/skills/uyu423/requarks-wiki-mcp/integration-test.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,893 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.01893
Opus 5 $0.00026 $0.00946
Sonnet 5 $0.00010 $0.00379
Haiku 4.5 $0.00005 $0.00189

Measured 9d ago against content hash 32ccabef750e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

integration-test scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/integration-test/SKILL.md · 168 lines

How it starts

The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Wiki.js MCP Integration Test

Run a full end-to-end integration test against a live Wiki.js instance. Tests all 29 MCP tools (19 read + 10 write) and validates error handling.

Step 1: Collect connection details

Ask the user for the following values. Do NOT proceed until both required values are provided:

  1. Wiki.js URL (required): The base URL of the Wiki.js instance (e.g., https://wiki.example.com)
  2. API Token (required): A Wiki.js API key (JWT) with appropriate permissions

Optionally ask:

  1. Mutation test? (default: no): Whether to test write operations (create/update/delete). Warn the user that this will create and delete a test page at mcp-test/integration-<timestamp>.

Step 2: Build the project

npm run build

If the build fails, report the error and stop.

Step 3: Run read-only tests

Set environment variables and run the integration test in read-only mode first:

WIKI_BASE_URL="<user-provided-url>" \
WIKI_API_TOKEN="<user-provided-token>" \
WIKI_GRAPHQL_PATH="/graphql" \
WIKI_DEFAULT_LOCALE="en" \
WIKI_DEFAULT_EDITOR="markdown" \
WIKI_MUTATIONS_ENABLED=false \
WIKI_MUTATION_CONFIRM_TOKEN="INTEGRATION_TEST" \
WIKI_MUTATION_DRY_RUN=true \
WIKI_HTTP_TIMEOUT_MS=15000 \
WIKI_HTTP_MAX_RETRIES=2 \
npx tsx test/integration.ts

Read tool checklist

Verify these tools return successful results:

# Tool What to check
1 wikijs_list_pages Returns an array of pages
2 wikijs_search_pages Returns search results with totalHits
3 wikijs_get_page_by_id Returns page content for a valid ID
3b wikijs_get_page_by_id (not found) Returns WikiNotFoundError for ID 999999
4 wikijs_get_page_by_path Returns page content for a valid path
4b wikijs_get_page_by_path (not found) Returns WikiNotFoundError for invalid path
5 wikijs_get_page_tree Returns tree items with id, path, isFolder
6 wikijs_get_page_history Returns history trail with version entries
7 wikijs_list_tags Returns array of tags
8 wikijs_get_page_version Returns specific page version content (uses versionId from history)
9 wikijs_get_page_links Returns array of page link relationships
10 wikijs_search_tags Returns tag search results
11 wikijs_list_comments Returns array of comments for a page (may be empty)
12 wikijs_get_comment Returns single comment by ID (skipped if no comments found)
13 wikijs_get_system_info Returns object with currentVersion
14 wikijs_get_navigation Returns array of navigation trees
15 wikijs_get_site_config Returns site configuration (non-sensitive fields)
16 wikijs_list_assets Returns array of assets (folderId=0, kind=ALL)
17 wikijs_list_asset_folders Returns array of asset folders
18 wikijs_get_current_user Returns current user profile with id, name, email
19 wikijs_search_users Returns array of user search results

Read the full file on GitHub · 168 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 168 lines · 51 tokens per session scan A 32ccabef750e

Subscribe to this mod's changes

integration-test is a skill published in the GitHub repository uyu423/requarks-wiki-mcp (6 stars, last pushed 6mo ago), licensed MIT. It adds 51 tokens to every session and 1,893 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

test-warp-ui

Guides testing Warp UI features and changes using the computer use tool. Use this skill only when computer-use testing was requested (explicit request or accepted offer) and the computeruse tool is available to the agent. Covers launching Warp and verifying UI behavior.

warpdotdev/warp · 55 tokens

test-electron-app

Drive the real running PostHog Electron app (live tRPC, workspace-server, real data) over CDP with agent-browser. Connect to the running app on port 9222, test desktop changes against a local Django stack, snapshot the accessibility tree, inspect network requests, and screenshot only when explicitly asked. Use when…

PostHog/posthog-foss · 112 tokens

pyats-dynamic-test

Generate and execute deterministic pyATS aetest validation scripts - interface state, OSPF neighbors, BGP paths, ping matrices, and custom compliance tests. Use when writing a network test, validating post-change state, running pass/fail checks, or building automated regression tests.

automateyournetwork/netclaw · 61 tokens

test-loop

Plan, generate, and heal an executable E2E test suite from approved acceptance criteria (web and mobile).

HoangNguyen0403/agent-skills-standard · 25 tokens

playwright-cli

Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…

testdino-hq/playwright-skill · 64 tokens