- Home
- MCP servers
- Guozaoke
Guozaoke
- javascript
1
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 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": {
"zhaokang555-guozaoke-mcp-server": {
"command": "npx",
"args": [
"-y",
"guozaoke-mcp-server"
],
"env": {
"GUOZAOKE_COOKIE": "YOUR_COOKIE_HERE"
}
}
}
}You can run a Guozaoke MCP Server to access Guozaoke forum topics and content through an MCP client. It uses a cookie for authentication and exposes a simple, self-contained runtime that fetches topic lists and topic details for you to query from your assistant workflows.
How to use
Start the server locally and connect via an MCP client to fetch latest topics, today’s hot topics, or detailed topic content. You provide your authentication cookie, and then your MCP client can request the tool endpoints to retrieve data. Typical usage patterns include listing latest topics with pagination, listing today’s hot topics, and requesting full topic details by ID. You can compose prompts in your assistant to trigger these endpoints and present results to users.
How to install
Prerequisites: you need Node.js installed on your system to run the MCP server via npx.
Install and run using one of the quick start options shown here.
Additional setup and examples
You must provide your Guozaoke authentication cookie. The server accepts it via an environment variable named GUOZAOKE_COOKIE.
Available tools
fetch-guozaoke-latest-topic-list
Fetches the latest topic list from the Guozaoke forum with pagination support.
fetch-guozaoke-today-hot-topic-list
Fetches today’s hot topic list from the Guozaoke forum.
fetch-guozaoke-topic-details
Fetches detailed information for a topic by ID, including content and replies. Detects login state and supports cookie-based access to restricted content.
show-latest-topic-list
Prompts to display the latest topic list in a user-friendly format.
show-hot-topic-list
Prompts to display today’s hot topic list in a user-friendly format.
show-topic-details
Prompts to display full topic details, including content and responses, in a readable format.