init-mcp-server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@init-mcp-serverWhat's the current time?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
init-mcp-server
A cloud-deployable Model Context Protocol (MCP) server using Express + SSE transport. Ready to deploy on Render (free tier) and connect to Gemini as a custom connected app.
Included Tools
Tool | Description |
| Returns back the input text (connection test) |
| Adds two numbers |
| Returns current UTC time as ISO-8601 |
| Reverses a string |
Related MCP server: Python MCP Server
Quick Start
npm install
npm run build
npm startDeploy to Render
Push this repo to GitHub
Go to Render Dashboard -> New -> Blueprint
Connect the repo and click Apply (render.yaml handles the rest)
Copy your HTTPS URL and connect to Gemini at
/sse
Connect to Gemini
Open Gemini -> Settings -> Connected Apps
Add custom app link:
https://your-service.onrender.com/sseGemini will discover all 4 tools automatically
Project Structure
src/
index.ts # Express server + SSE transport
tools.ts # Tool definitions and handlers
render.yaml # Render deployment config
package.json
tsconfig.jsonAdding Your Own Tools
Edit src/tools.ts:
Add a new entry to the
toolsarrayAdd a matching
casein the switch statementRebuild and redeploy
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for AI dialogue using various LLM models via AceDataCloud
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceAn MCP (Model Context Protocol) server implementation using HTTP SSE (Server-Sent Events) connections with built-in utility tools including echo, time, calculator, and weather query functionality.2-
- FlicenseDqualityDmaintenanceA demonstration MCP server built with fastmcp that provides basic utility tools including number addition and greeting functionality. Integrates with Gemini CLI to enable natural language interaction with simple mathematical and greeting operations.2-
- AlicenseNot gradedqualityDmaintenanceA self-contained, dependency-free MCP server that provides utility tools for time, date, mathematical calculations, and shell command execution. It supports remote connectivity through SSE and is designed for easy deployment via Docker.GPL 3.0
- FlicenseNot gradedqualityDmaintenanceA basic MCP server demonstrating tool registration and SSE transport, enabling AI clients to call greeting, arithmetic, and time tools.-