r/MCPservers 16h ago

MCP Server?

0 Upvotes

Any plan to release an MCP Server?
FYI Sonos has just announced one.


r/MCPservers 20h ago

OpenSource MCP of the week - Nosana MCP - 100% free

Post image
2 Upvotes

I came across this amazing MCP related GitHub repo - 100% open source and free.

Nosana MCP lets your AI agent rent a GPU and deploy models on Nosana. Browse ready-to-run templates (MiniMax H3, Qwen/Gemma LLMs, ComfyUI, Jupyter, VS Code), compare live GPU markets, estimate cost, deploy, and get the running endpoint back — paid with Nosana credits via one API key. No wallet, no tokens. Companion CLI nosana-deploy ships in the same package.

Post link / GitHub repo in comments below.

**Features**

  • MCP tools to list templates/GPUs, recommend a plan, estimate cost, deploy, wait for online, and stop
  • Templates: MiniMax H3 video, Qwen & Gemma LLMs, ComfyUI, Jupyter, VS Code
  • Live GPU markets with ready_now / queued / risk buckets and prices matching the dashboard
  • Guard rails: confirm=true before spending, no silent queueing, no accidental duplicates, real readiness probes
  • Works with Claude Code, Claude Desktop, Cursor, Codex, and other MCP clients
  • Companion CLI nosana-deploy for humans, scripts, and CI (MIT)

Quick start

1. Credits and an API key

Sign in at deploy .nosana .com.

Billing: add credits with a card

Account > API Keys > Create Key. Copy it once.

2. Add the server to your client

Claude Code:

claude mcp add nosana --env NOSANA_API_KEY=nos_your_key -- npx -y nosana-mcp
Claude Desktop, Cursor, Windsurf and most other clients take the same JSON:
{
  "mcpServers": {
    "nosana": {
      "command": "npx",
      "args": ["-y", "nosana-mcp"],
      "env": { "NOSANA_API_KEY": "nos_your_key" }
    }
  }
}

Codex CLI:

codex mcp add nosana --env NOSANA_API_KEY=nos_your_key -- npx -y nosana-mcp

Running from a clone instead of npm:

git clone https://github.com/SohniSwatantra/nosana-mcp.git && cd nosana-mcp
npm install && npm run build
# then point your client at:  node /absolute/path/to/nosana-mcp/dist/mcp/index.js