- Home
- MCP servers
- Consumer Rights Wiki
Consumer Rights Wiki
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"cicatriiz-consumer-rights-wiki-mcp": {
"command": "node",
"args": [
"path/to/consumer-rights-wiki-mcp/build/index.js"
]
}
}
}You can access and interact with the Consumer Rights Wiki through this MCP server, enabling your AI assistant to search articles, fetch full pages, inspect page details, and view recent changes. This makes it easy to build workflows that educate users about modern consumer exploitation practices and protections.
How to use
You connect to the MCP server from your client and issue requests that map to the server’s tools. You can search for articles, retrieve whole pages or specific sections, obtain page metadata, view recent changes, and explore article categories and structure. Use natural language prompts like: “Search the Consumer Rights Wiki for information about privacy data misuse” or “Get the content of the Privacy violations article.” You can ask for a page’s sections to understand its outline or request the most recent changes to stay up-to-date.
How to install
Prerequisites: you need Node.js and npm installed on your system. Ensure your environment supports running local MCP servers.
Step 1: Create a directory for the MCP server and navigate into it.
Step 2: Save the following project files into your directory as shown: src/index.ts, package.json, tsconfig.json.
Step 3: Install dependencies.
Step 4: Build the TypeScript code.
Step 5: Run the server. The project can be started in different ways depending on how you configure your client.
Configuration and runtime details
Configuration for Claude Desktop is provided to connect the local MCP server. The server runs locally via a Node process that you start after building.
{
"mcpServers": {
"consumer-rights-wiki": {
"command": "node",
"args": ["path/to/consumer-rights-wiki-mcp/build/index.js"]
}
}
}
Available tools
search_wiki
Search for articles in the Consumer Rights Wiki using a query and optional limit to control the number of results.
get_page_content
Retrieve the full content of a specific wiki page by title, with an optional section parameter to fetch a specific section.
get_page_info
Get metadata about a wiki page, including its revision history, categories, and protection status.
get_recent_changes
View the most recent changes to the wiki, with optional filters for limit and namespace.
get_categories
List all categories or all pages within a specific category, with a limit on results.
get_page_sections
Obtain the section structure of a wiki page to understand its outline.