- Home
- MCP servers
- Party Time
Party Time
- other
1
GitHub Stars
other
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": {
"idyll-party-time-mcp": {
"command": "./party_time_mcp",
"args": []
}
}
}Party Time MCP Server is a lightweight local MCP endpoint that responds with “It's Party Time” when asked about the current time. It is designed to run as a small, self-contained helper that communicates via the MCP protocol through standard input and output and can be wired into an MCP client workflow for quick responses.
How to use
You connect to the Party Time MCP Server using your MCP client. The server exposes a single tool called get-time. When you invoke this tool through your client, the server returns the friendly message “It's Party Time.” Use it as a playful, deterministic time response in your MCP workflow. You don’t need to configure multiple tools or complex endpoints—this server focuses on delivering a single, reliable response.
How to install
Prerequisites: You need Elixir and the Elixir tooling to build escripts. Ensure you have the required build tools installed on your system.
Step by step installation and setup
# 1. Build the Executable
mix deps.get
mix escript.build
# This creates an executable named party_time_mcp in your project directory
# 2. Make it executable (if needed)
chmod +x ./party_time_mcp
# 3. Optional: run locally to test
./party_time_mcp
Configure Claude Desktop to use the MCP server
Create or edit your Claude Desktop configuration to register the new MCP server. Provide the path to your local executable so Claude can call it as a tool.
{
"mcpServers": {
"partytime": {
"command": "/path/to/your/party_time_mcp",
"args": []
}
}
}
Available tools
get-time
Single tool that returns the time-related response when invoked by an MCP client.