Skip to main content
ClaudeWave
JGPAS avatar
JGPAS

mcp-first-server

View on GitHub

MCP server (Model Context Protocol) with stdio and HTTP transports — quote and live crypto price tools, deployed on Render.

MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/3/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/JGPAS/mcp-first-server
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-first-server": {
      "command": "node",
      "args": ["/path/to/mcp-first-server/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/JGPAS/mcp-first-server and follow its README for install instructions.
Use cases

MCP Servers overview

# mcp-first-server

A Model Context Protocol (MCP) server built with the official MCP SDK, available both as a
local stdio server (for Claude Desktop) and as a cloud-deployed HTTP server reachable over the
network.

**Live demo:** https://mcp-first-server.onrender.com (note: free-tier hosting, first request
after inactivity may take up to ~50s to wake the instance)

## Tools
- **get_quote** — returns a random motivational quote.
- **get_crypto_price** — fetches the live USD price of any cryptocurrency (via CoinGecko).

## Two ways to run this server
- `server.js` — stdio transport, for local use with Claude Desktop or any MCP client that
  spawns a local process.
- `server-http.js` — StreamableHTTP transport wrapped in Express, for cloud/network deployment
  (this is what's running at the live demo URL above). Listens on `process.env.PORT`.

## Local setup
```
npm install
npm start          # runs server.js (stdio)
node server-http.js  # or run the HTTP version locally
```

## Try the live HTTP endpoint
```
curl -X POST https://mcp-first-server.onrender.com/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
```

## Tech
Node.js, [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/sdk), Express,
Zod for schema validation. Deployed on Render.

## License
MIT — see [LICENSE](./LICENSE).

## Author
Built by James Ganobi.

What people ask about mcp-first-server

What is JGPAS/mcp-first-server?

+

JGPAS/mcp-first-server is mcp servers for the Claude AI ecosystem. MCP server (Model Context Protocol) with stdio and HTTP transports — quote and live crypto price tools, deployed on Render. It has 0 GitHub stars and its last recorded update is dated 2026-09-02.

How do I install mcp-first-server?

+

You can install mcp-first-server by cloning the repository (https://github.com/JGPAS/mcp-first-server) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is JGPAS/mcp-first-server safe to use?

+

Our security agent has analyzed JGPAS/mcp-first-server and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains JGPAS/mcp-first-server?

+

JGPAS/mcp-first-server is maintained by JGPAS. The last recorded GitHub activity is dated 2026-09-02, with 0 open issues.

Are there alternatives to mcp-first-server?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-first-server to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: JGPAS/mcp-first-server
[![Featured on ClaudeWave](https://claudewave.com/api/badge/jgpas-mcp-first-server)](https://claudewave.com/repo/jgpas-mcp-first-server)
<a href="https://claudewave.com/repo/jgpas-mcp-first-server"><img src="https://claudewave.com/api/badge/jgpas-mcp-first-server" alt="Featured on ClaudeWave: JGPAS/mcp-first-server" width="320" height="64" /></a>

More MCP Servers

mcp-first-server alternatives