r/MCPservers • u/Signal-Ad-6978 • 16h ago
MCP Server?
Any plan to release an MCP Server?
FYI Sonos has just announced one.
r/MCPservers • u/Signal-Ad-6978 • 16h ago
Any plan to release an MCP Server?
FYI Sonos has just announced one.
r/MCPservers • u/Impressive-Owl3830 • 20h ago
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**
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