npm @hebcal/mcpstreamable-httpBSD-2-Clauseupdated 1mo ago
Hebcal (pronounced HEEB-kal, as in Hebrew calendar) is a free Jewish calendar and holiday web site.
What can you do with hebcal?
Hebcal Jewish holidays and Hebrew calednar Model Context Protocol (MCP) server
Hebcal (pronounced HEEB-kal, as in Hebrew calendar) is a free Jewish calendar and holiday web site.
Our mission is to increase awareness of Jewish holidays and to help Jews to be observant of the mitzvot.
This repository is the MCP server equivalent of the powerful custom Jewish calendar tool that lets you generate a list of Jewish holidays for any year (past, present or future).
Also available are a Hebrew date converter, Shabbat candle lighting times and Torah readings (both full kriyah and triennial system), and a page to look up yahrzeits, birthdays and anniversaries.
Running the Server
This MCP server can run in two modes:
-
Stdio Mode (default): Communicates over standard input/output.
npm install npm run build node build/cli.js -
Server-Sent Events (SSE) Mode: Communicates over HTTP using SSE.
npm install npm run build node build/server.jsThe SSE endpoint will be available at
http://localhost:8080/mcpby default. You can configure the port using theNODE_PORTenvironment variable (e.g.,NODE_PORT=3000 node build/server.js).You can test the SSE endpoint with
curl:curl -N http://localhost:8080/mcpThen, in a separate terminal, you can send MCP requests (as JSON) to the server via its stdin if you are also running it in stdio mode, or by sending HTTP POST requests if you were to implement an HTTP ingress for requests. For now, the SSE transport only handles outgoing messages. For a full duplex SSE communication, the client would also need to send requests to the server (e.g. via POST requests to a different endpoint). This example focuses on the server sending events to the client.
Install
Add hebcal to your client. Pick the one you use.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://www.hebcal.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @hebcal/mcpcodex mcp add mcp -- npx -y @hebcal/mcpamp mcp add mcp -- npx -y @hebcal/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@hebcal/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@hebcal/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@hebcal/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@hebcal/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@hebcal/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@hebcal/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@hebcal/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @hebcal/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 26 days ago
- Has a release history
- Repository is not archived
- Licensed BSD-2-Clause
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.9.9Latest | Feb 23, 2026 |
| 0.9.8 | Feb 23, 2026 |