Qiita MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"qiita-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for interacting with Qiita, the knowledge-sharing platform for engineers.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in writing / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for Qiita Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for interacting with Qiita, the knowledge-sharing platform for engineers.
This package provides a Model Context Protocol (MCP) server that enables AI agents to interact with the Qiita API. It allows for creating, reading, and updating articles on Qiita through standardized MCP tools.
MCP is an open protocol for building AI agents that can use external tools and services. This server implements the MCP specification to provide tools for working with Qiita content.
The server provides the following MCP tools:
| Tool Name | Description |
|---|---|
get_my_qiita_articles | Get current authenticated user's Qiita articles |
get_qiita_item | Get a specific Qiita article by its ID |
post_qiita_article | Create a new article on Qiita |
update_qiita_article | Update an existing Qiita article |
get_qiita_markdown_rules | Get Qiita markdown syntax rules and cheat sheet |
.vscode/mcp.json file in your project with the following content:{
"inputs": [
{
"type": "promptString",
"id": "qiita-api-token",
"description": "Qiita API Token",
"password": true
}
],
"servers": {
"qiita-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["@2bo/qiita-mcp-server"],
"env": {
"QIITA_API_TOKEN": "${input:qiita-api-token}"
}
}
}
}
git clone https://github.com/2bo/qiita-mcp-server.git
cd qiita-mcp-server
npm install
npm run dev - Run TypeScript in watch mode for developmentnpm run build - Build the projectnpm run prepare - Prepare the package for publishingContributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.