Qiita MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| QIITA_TEAM | No | Your Qiita Team name (optional, only required if you want to use Qiita Team) | |
| QIITA_ACCESS_TOKEN | No | Your Qiita access token. While public articles can be viewed without authentication, setting an access token is recommended to avoid strict rate limits. You can obtain an access token from Qiita's settings page. |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_itemsB | Search Qiita articles. You can search with a query string or get recent articles without a query. |
| get_itemB | Get a specific Qiita article by its ID. |
| get_items_by_tagC | Get Qiita articles with a specific tag. |
| get_items_by_userC | Get articles written by a specific user. |
| get_tagsC | Get a list of tags used in Qiita. |
| get_item_commentsB | Get comments on a specific article. |
| get_user_stocksC | Get articles that a user has stocked (bookmarked). |
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 7 tools
Every tool has a clearly distinct purpose targeting specific resources and actions: retrieving articles by ID, comments, tags, users, stocks, or search. No ambiguity exists as each tool name precisely indicates its function without overlap.
All tools follow a consistent verb_noun pattern using snake_case (e.g., get_item, get_tags, search_items). The naming is highly predictable and readable throughout the set.
With 7 tools, the count is well-scoped for a Qiita article browsing and retrieval server. Each tool earns its place by covering distinct aspects like articles, tags, users, comments, and search.
The tool set provides comprehensive read-only coverage for browsing and retrieving Qiita content, including articles, comments, tags, users, and search. A minor gap exists in write operations (e.g., creating or updating articles), but agents can effectively work with the available tools for querying purposes.