- Home
- MCP servers
- Danbooru Tags
Danbooru Tags
- 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.
You can run Danbooru Tags MCP Server to search Danbooru tag information and character statistics from an MCP client. This server exposes tools to extract post tags, analyze character tag popularity, and fetch wiki information, making it easy to build powerful queries into your workflows.
How to use
You will connect with a compatible MCP client and call the available tools to retrieve data. Use the get_post_tags tool to pull all tags from a specific Danbooru post by providing its ID or URL. Use get_character_tags to analyze common tags for a character, with optional filters like the number of posts to analyze, top results to return, and category filters. Use get_wiki_info to fetch Danbooru tag or character information from the wiki. When you run a query, the MCP server returns structured results that you can programmatically consume in your application or automation.
How to install
Choose your hosting method: local (CLI) or cloud (HTTPS URL). Follow the concrete steps below to set up the MCP server in your environment.
Local installation (config.json)
{
"mcpServers": {
"danbooru-tags": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@gamzadongza/danbooru-tags-mcp"
]
}
}
}
Cloud/HTTPS usage
If you prefer to run the MCP server remotely, add this URL to your MCP client configuration or your Cloud/Mobile app: https://server.smithery.ai/@gamzadongza/danbooru-tags-mcp/mcp?api\_key=YOUR\_API\_KEY
Notes and tips
The server supports multiple tools to fetch and analyze data. Use clear input values (post URL, character tag, or wiki tag) to get precise results. If you need to filter results by specific tags, you can pass include or exclude criteria through your client’s tool options.
Troubleshooting
- If the server does not respond, verify that the HTTP endpoint is reachable or that the local process is running. - Check that you are using a valid API key for the cloud URL. - Ensure your MCP client API calls target the correct tool names: get_post_tags, get_character_tags, and get_wiki_info.
Examples of supported tools
The server exposes the following tools you can call from your MCP client: get_post_tags, get_character_tags, get_wiki_info. Each tool returns structured data as shown in the examples.
Available tools
get_post_tags
Extract all tags from a specific Danbooru post by providing post_id_or_url. Returns post_id, url, total_tags, all_tags, and categorized tag groups including general, artist, copyright, character, and meta.
get_character_tags
Analyze commonly used tags for a character. You can set the number of posts to analyze, the top N tags to return, optional category filters, and include or exclude specific tags. Returns rankings and counts for top tags, plus clothing-related tags if requested.
get_wiki_info
Fetch Danbooru wiki information for a given tag name. Returns the wiki page title, alternative names, body content, a formatted body, and timestamp metadata for creation and last update.