article-tagger-mcp
v0.4.1
Published
MCP server for Article Tagger — use with Claude Code, Cursor, or any MCP-compatible agent
Downloads
31
Maintainers
Readme
article-tagger-mcp
MCP server for Article Tagger — use with Claude Code, Cursor, or any MCP-compatible agent.
Quick Start
With Claude Code / Cursor
Add to your .mcp.json:
{
"mcpServers": {
"article-tagger": {
"command": "npx",
"args": ["article-tagger-mcp"]
}
}
}Standalone
npx article-tagger-mcpTools (11)
This TypeScript MCP server proxies requests to the Article Tagger REST API.
| Tool | Description |
|------|-------------|
| tag_article | Tag an article, returns ranked tags with scores |
| tag_batch | Batch tag multiple articles |
| search_tags | Search the tag library |
| add_feedback | Submit feedback (correct/incorrect) |
| get_feedback | Get feedback history + stats |
| get_analytics | Usage analytics dashboard |
| get_quality | Tag library quality report |
| suggest_tags | Co-occurrence based tag suggestions |
| export_history | Export tagging history |
| get_weights | Active Learning weights |
| health | API health check |
Python MCP Server (24 tools)
For the full-featured Python MCP server with all 24 tools (tag CRUD, state management, model switching, discovery, etc.):
{
"mcpServers": {
"article-tagger": {
"command": "python",
"args": ["-m", "article_tagger.mcp_server"]
}
}
}Requirements
The Article Tagger API server must be running:
pip install article-tagger
article-tagger build-index --tags tags.json
article-tagger serveLicense
MIT
