Update Night MCP
Integrates with Amazon Q Developer to search and explore the Update Night catalog.
Allows GitHub Copilot (VS Code Agent mode) to search and explore the Update Night catalog.
Provides tools for searching and exploring the Update Night catalog within OpenAI Codex CLI.
Enables Raycast users to search and explore the Update Night catalog via MCP tools.
Click on "Install 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., "@Update Night MCPsearch for MCP servers"
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.
Update Night MCP
MCP server for the Update Night catalog. Gives AI assistants tools to search and explore AI dev tools, agent frameworks, skills, and MCP servers.
Tools
search -- search the catalog by query string. Optionally filter by kind (tool, skill, mcp) and set a result limit. Returns entries with name, tagline, pricing, and install snippets.
get_entry -- fetch a single catalog entry by kind and slug. Returns full details including description, pricing, install snippet, and homepage URL.
list_by_category -- list entries by kind and category slug (e.g. agent-framework, llm, rag, vector-db). Returns entries sorted by publish date.
list_news -- fetch recent news items from the Update Night news timeline. Accepts a days parameter (default 7). Returns titles, summaries, sources, and timestamps.
Build
git clone https://github.com/amajorai/updatenight-mcp
cd updatenight-mcp
cargo build --releaseBinary output: target/release/updatenight-mcp (or updatenight-mcp.exe on Windows).
Move the binary somewhere on your PATH, for example:
# macOS / Linux
sudo mv target/release/updatenight-mcp /usr/local/bin/updatenight-mcp
# Windows (run as admin, or pick any directory on PATH)
move target\release\updatenight-mcp.exe C:\Windows\System32\updatenight-mcp.exeAuthentication
On first run the server starts a device authorization flow, prints a verification URL and code to stderr, and opens your browser. Once approved, the token is saved and subsequent runs start immediately.
Token location: ~/.config/updatenight/mcp-config.json (Linux/macOS) or %APPDATA%\updatenight\mcp-config.json (Windows).
Installation by host
Replace /usr/local/bin/updatenight-mcp with the actual path to your binary in all configs below.
Claude Desktop
Config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/claude-desktop/claude_desktop_config.json
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}Quit and relaunch Claude Desktop after editing.
Claude Code
claude mcp add updatenight /usr/local/bin/updatenight-mcpTo add it at project scope (committed to .mcp.json for team sharing):
claude mcp add --scope project updatenight /usr/local/bin/updatenight-mcpCursor
Config file:
Project:
.cursor/mcp.jsonGlobal:
~/.cursor/mcp.json
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}Quit and reopen Cursor after editing.
Windsurf
Config file:
macOS/Linux:
~/.codeium/windsurf/mcp_config.jsonWindows:
%USERPROFILE%\.codeium\windsurf\mcp_config.json
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}VS Code (GitHub Copilot)
Config file: .vscode/mcp.json in your project root (commit to share with your team).
Note: VS Code uses servers not mcpServers, and requires an explicit "type" field.
{
"servers": {
"updatenight": {
"type": "stdio",
"command": "/usr/local/bin/updatenight-mcp"
}
}
}MCP tools are only available in Agent mode in VS Code Copilot Chat.
Cline (VS Code extension)
Open the Cline panel, click the MCP Servers icon, go to the Configure tab, and click "Configure MCP Servers". Add to the JSON that opens:
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}Continue.dev
Config file: ~/.continue/config.yaml (macOS/Linux) or %USERPROFILE%\.continue\config.yaml (Windows).
mcpServers:
- name: Update Night
command: /usr/local/bin/updatenight-mcp
type: stdioOr drop a JSON file at .continue/mcpServers/updatenight.json in your project:
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}Zed
Config file:
macOS:
~/.zed/settings.jsonLinux:
~/.config/zed/settings.jsonWindows:
%APPDATA%\Zed\settings.jsonProject:
.zed/settings.json
Note: Zed uses context_servers not mcpServers.
{
"context_servers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp",
"args": []
}
}
}Amazon Q Developer
Config file:
Global:
~/.aws/amazonq/mcp.jsonProject:
.amazonq/mcp.json
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}Gemini CLI
Config file:
Global:
~/.gemini/settings.jsonProject:
.gemini/settings.json
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}OpenAI Codex CLI
Config file: ~/.codex/config.toml (global) or .codex/config.toml (project).
Note: Codex uses TOML, not JSON.
[mcp_servers.updatenight]
command = "/usr/local/bin/updatenight-mcp"
args = []Raycast
Open Raycast, run "Manage MCP Servers", press Cmd+N to add a new server, or open the config file directly at ~/Library/Application Support/com.raycast.macos/extensions/EvanZhouDev.mcp/mcp.json:
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp"
}
}
}Configuration
UPDATENIGHT_API_URL -- API host to connect to. Defaults to https://server.updatenight.com if not set.
For local development, set it to your local server (port 3000 by default). You can do this in the .env file next to the binary, or pass it via your host's MCP env config:
{
"mcpServers": {
"updatenight": {
"command": "/usr/local/bin/updatenight-mcp",
"env": {
"UPDATENIGHT_API_URL": "http://localhost:3000"
}
}
}
}The binary also loads a .env file from the working directory at startup if one is present.
Related
Update Night CLI -- terminal UI for browsing the catalog
Update Night Skill -- Claude Code skill for browsing the catalog from any AI agent
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/amajorai/updatenight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server