nurbxfit/nurbxfit-articles-mcp
If you are the rightful owner of nurbxfit-articles-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A simple MCP server for retrieving Nurbxfit blog articles, compatible with Claude.
nurbxfit-blog-mcp
A simple MCP (model context protocol) server for getting Nurbxfit blog articles.
Runs using stdio transport and is compatible with Claude.
🚀 Getting Started
1. Install dependencies
npm install
2. Build the project
npm run build
3. Run the server
npm run index.ts
🖥️ Integration with Claude
To use this server with Claude Desktop, add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"nurbxfit-articles": {
"command": "node",
"args": [
"D:\\PATH_TO_YOUR_PROJECT\\build\\index.js"
],
"env": {
"BLOG_API": "https://blog-api[dot]nurbxfit[dot]com/api"
}
}
}
}
Note: Replace
D:\\PATH_TO_YOUR_PROJECT
with the actual path to your project directory.
📖 About
This project is a lightweight MCP server for Nurbxfit blog articles.
I had a personal public articles API that connect with my Notion app.
Here I just creatted a simple MCP server to get articles from it.
Usage with Claude
You can simply as Claude to get articles from Nurbxfit blog. like this:
"Get me the latest articles from nurbxfit.com"
or
"What articles are available on nurbxfit.com?"
and it will something alongside like this:
Based on the available articles on nurbxfit.com, there are 5 articles covering different technical topics:
Linux Category:
SSH Basic (July 20, 2025) - A recent article covering SSH fundamentals
Linux Shadow File Hash Type (June 10, 2022) - Explains Linux password hash types in the shadow file
Programming Category:
SQLite with Python (June 6, 2022) - Basic guide to using SQLite with Python
React Basic (February 16, 2021) - Introduction to React fundamentals
React Component Basic (February 6, 2021) - Guide to React components
The articles appear to focus on system administration (Linux/SSH) and web development (React/Python/SQLite) topics, with dates ranging from 2021 to 2025. The most recent article is about SSH basics from this month.