foolfuuka-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FOOLFUUKA_BASE_URL | No | Root URL of a FoolFuuka archive | https://desuarchive.org |
| FOOLFUUKA_USER_AGENT | No | User-Agent header sent with API requests | foolfuuka-mcp-server/1.0 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_archiveA | Full-text search across archived 4chan posts. Parameters: text (comment search), boards (dot-delimited, e.g. "a" or "adv.trv"), subject, username, tripcode, capcode, filename, image (MD5 hash), uid, country, deleted, ghost, filter (image/text), type (sticky/op/posts), start/end (YYYY-MM-DD), results (thread to group), order (asc/desc), page. Returns a markdown table with Board, Thread, Post, Date, Author, Excerpt columns. |
| get_threadA | Retrieve all posts in a thread from a 4chan archive. Parameters: board (shortname), num (thread OP post number), latest_doc_id (incremental fetch, returns only newer posts), last_limit (max posts to return, default 100, pass 0 for all). Returns formatted thread with OP and replies including author, timestamp, subject, content, and media attachments. |
| get_postA | Retrieve a single post from a 4chan archive by board and post number. Parameters: board (shortname), num (post number, can include _ suffix for ghost posts, e.g. "676_1"). Returns post details including author, date, board, thread number, subject, content, and media (filename, dimensions, size) with image link. |
| list_boardsA | List all available boards on the configured 4chan archive. No parameters required. Returns a markdown table with Board and Name columns, plus site name and search-enabled board count. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool serves a distinct purpose: global search, thread retrieval, single post retrieval, and board listing, with no functional overlap.
All tools follow a consistent verb_noun pattern (search_archive, get_thread, get_post, list_boards), making them predictable.
With only 4 tools, the set is minimal but well-scoped for a read-only archive viewer; slightly underpopulated but not insufficient.
Covers all basic read operations (search, thread, post, board list) for the domain; no obvious missing operations for the intended use case.