Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
marcelo-ochoa avatar

Qnap

  • 2 repo stars
  • Updated June 10, 2026
  • marcelo-ochoa/servers

io.github.marcelo-ochoa/qnap is a MCP server that connects coding agents to the QNAP NAS API over stdio via @marcelo-ochoa/server-qnap.

About

io.github.marcelo-ochoa/qnap is an MCP server that exposes the QNAP NAS API to AI coding agents via the npm package @marcelo-ochoa/server-qnap, version 1.0.8, using stdio transport. operators and founders often run a QNAP for media, Docker volumes, Time Machine targets, or off-site backup sync; manually clicking QTS for every share tweak or status check does not scale when you already live in Claude Code or Cursor. Register this server in your MCP config so the agent can invoke NAS API operations in natural language while you harden networking, document runbooks, or automate post-deploy file workflows. It belongs on Operate / infra because it governs living storage infrastructure, not the Validate or Launch marketing stack. Unlike the MySQL, Oracle, and Postgres entries in the same monorepo, the published schema shows no positional connection arguments—expect QNAP host, credentials, or API tokens to be handled via environment or client-specific setup you validate against QNAP docs. It is an API bridge, not a backup product or RAID calculator skill.

  • MCP server @marcelo-ochoa/server-qnap version 1.0.8 over stdio transport
  • Wraps QNAP NAS API for agent-driven administration tasks
  • npm registry package with repository at marcelo-ochoa/servers src/qnap
  • No extra packageArguments in schema—simpler entry than database siblings
  • Pairs home-lab and indie prod setups where QNAP holds assets or backups

Qnap by the numbers

  • Data as of Jul 7, 2026 (Skillselion catalog sync)
terminal
claude mcp add qnap -- npx -y @marcelo-ochoa/server-qnap

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars2
Package@marcelo-ochoa/server-qnap
TransportSTDIO
AuthNone
Last updatedJune 10, 2026
Repositorymarcelo-ochoa/servers

What it does

Let your agent call QNAP NAS APIs through MCP so home-lab or small-team storage, shares, and appliance tasks stay scriptable from the coding client.

Who is it for?

Best when you already depend on QNAP for storage or containers and use MCP agents for automation and documentation.

Skip if: Cloud-only developers with no NAS, or anyone who needs full hypervisor or AWS S3 management instead of QNAP-specific APIs.

What you get

After MCP registration, your agent can drive QNAP NAS API workflows from the same session where you maintain apps and infrastructure code.

  • QNAP NAS API exposed to your coding agent through MCP
  • Agent-assistable NAS administration without custom API wrappers for every task
  • Stdio MCP server at published version 1.0.8 from npm

By the numbers

  • npm package @marcelo-ochoa/server-qnap version 1.0.8
  • Stdio MCP transport in server.schema.json
  • Repository subfolder src/qnap in github.com/marcelo-ochoa/servers
README.md

Model Context Protocol servers

This repository is a collection of reference implementations for the Model Context Protocol (MCP), as well as references to community-built servers and additional resources.

[!IMPORTANT] If you are looking for a list of MCP servers, you can browse published servers on the MCP Registry. The repository served by this README is dedicated to housing just the small number of reference servers maintained by the MCP steering group.

[!WARNING] The servers in this repository are intended as reference implementations to demonstrate MCP features and SDK usage. They are meant to serve as educational examples for developers building their own MCP servers, not as production-ready solutions. Developers should evaluate their own security requirements and implement appropriate safeguards based on their specific threat model and use case.

The servers in this repository showcase the versatility and extensibility of MCP, demonstrating how it can be used to give Large Language Models (LLMs) secure, controlled access to tools and data sources. Typically, each MCP server is implemented with an MCP SDK:

🌟 Reference Servers

These servers aim to demonstrate MCP features and the official SDKs.

  • Everything - Reference / test server with prompts, resources, and tools.
  • Fetch - Web content fetching and conversion for efficient LLM usage.
  • Filesystem - Secure file operations with configurable access controls.
  • Git - Tools to read, search, and manipulate Git repositories.
  • Memory - Knowledge graph-based persistent memory system.
  • Sequential Thinking - Dynamic and reflective problem-solving through thought sequences.
  • Time - Time and timezone conversion capabilities.

Archived

The following reference servers are now archived and can be found at servers-archived.

  • AWS KB Retrieval - Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
  • Brave Search - Web and local search using Brave's Search API. Has been replaced by the official server.
  • EverArt - AI image generation using various models.
  • GitHub - Repository management, file operations, and GitHub API integration.
  • GitLab - GitLab API, enabling project management.
  • Google Drive - File access and search capabilities for Google Drive.
  • Google Maps - Location services, directions, and place details.
  • PostgreSQL - Read-only database access with schema inspection.
  • Puppeteer - Browser automation and web scraping.
  • Redis - Interact with Redis key-value stores.
  • Sentry - Retrieving and analyzing issues from Sentry.io.
  • Slack - Channel management and messaging capabilities. Now maintained by Zencoder
  • SQLite - Database interaction and business intelligence capabilities.

🚀 Getting Started

Using MCP Servers in this Repository

TypeScript-based servers in this repository can be used directly with npx.

For example, this will start the Memory server:

npx -y @modelcontextprotocol/server-memory

Python-based servers in this repository can be used directly with uvx or pip. uvx is recommended for ease of use and setup.

For example, this will start the Git server:

# With uvx
uvx mcp-server-git

# With pip
pip install mcp-server-git
python -m mcp_server_git

Follow these instructions to install uv / uvx and these to install pip.

Using an MCP Client

However, running a server on its own isn't very useful, and should instead be configured into an MCP client. For example, here's the Claude Desktop configuration to use the above server:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-memory"]
    }
  }
}

On Windows, wrap npx with cmd /c:

{
  "mcpServers": {
    "memory": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-memory"]
    }
  }
}

Additional examples of using the Claude Desktop as an MCP client might look like:

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/files"]
    },
    "git": {
      "command": "uvx",
      "args": ["mcp-server-git", "--repository", "path/to/git/repo"]
    },
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    },
    "postgres": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
    }
  }
}

On Windows, apply the same wrapper to each npx-based entry above by changing "command" to "cmd" and prepending "/c", "npx" to the existing args. Leave uvx entries unchanged.

🛠️ Creating Your Own Server

Interested in creating your own MCP server? Visit the official documentation at modelcontextprotocol.io for comprehensive guides, best practices, and technical details on implementing MCP servers.

📚 Learn More

See ADDITIONAL.md for a curated list of frameworks and resources that simplify building MCP servers and clients.

🤝 Contributing

See CONTRIBUTING.md for information about contributing to this repository.

🔒 Security

See SECURITY.md for reporting security vulnerabilities.

📜 License

This project is licensed under the Apache License, Version 2.0 for new contributions, with existing code under MIT - see the LICENSE file for details.

💬 Community

⭐ Support

If you find MCP servers useful, please consider starring the repository and contributing new servers or improvements!


Managed by Anthropic, but built together with the community. The Model Context Protocol is open source and we encourage everyone to contribute their own servers and improvements!

Recommended MCP Servers

How it compares

QNAP NAS API MCP adapter, not a generic file-sync skill or database MCP server.

FAQ

Who is io.github.marcelo-ochoa/qnap for?

It is for developers and homelab operators who manage a QNAP NAS and want MCP-enabled agents to help with API-driven NAS tasks.

When should I use io.github.marcelo-ochoa/qnap?

Use it during Operate and infra work when you automate backups, shares, or QNAP services while shipping or maintaining side projects.

How do I add io.github.marcelo-ochoa/qnap to my agent?

Install @marcelo-ochoa/server-qnap, add it as a stdio MCP server in Claude Code or Cursor, and configure QNAP API access per your NAS and client docs.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.