- Home
- MCP servers
- Ibrahim's
Ibrahim's
- javascript
1
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"ibrahim-sajib-my-mcp": {
"command": "node",
"args": [
"server.js"
],
"env": {
"CALENDAR_ID": "YOUR_CALENDAR_ID",
"GOOGLE_PUBLIC_API_KEY": "YOUR_GOOGLE_API_KEY"
}
}
}
}This MCP server provides calendar lookup, basic math, and greetings to assist large language models in practical tasks. It runs locally via Node.js and exposes essential tools you can access from your MCP client to perform time-based lookups, simple calculations, and friendly interactions.
How to use
You can connect to this MCP server from an MCP client to access its calendar lookups, math utilities, and greeting functions. Once the server is running, your client can request calendar events for a given date, perform quick arithmetic, or generate friendly messages. Use the exposed tools in your workflows to streamline planning, calculations, and user interactions within your LLM integrations.
How to install
Follow these steps to set up and run the MCP server locally.
# Clone the repository
git clone https://github.com/ibrahim-sajib/my-mcp.git
# Go to the project directory
cd my-mcp
# Install Node.js dependencies
npm install
# Create the environment file
cp .env.example .env
# Open .env and set the following variables:
# GOOGLE_PUBLIC_API_KEY=
# CALENDAR_ID=
# Run the server
node server.js
Additional steps and notes
Prerequisites: ensure you have Node.js and npm installed on your system. If you don’t have them, install Node.js from the official source for your platform, which will also provide npm.
Available tools
calendar_lookup
Fetch calendar events for a given date or range from the specified calendar.
basic_math
Perform simple arithmetic operations such as addition, subtraction, multiplication, and division.
greeting
Generate friendly greeting messages for users or sessions.