mcp-week-day
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., "@mcp-week-dayWhat day of the week is it today?"
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.
mcp-week-day
A small MCP server built with FastMCP. It exposes a single tool, day_in_week, which returns the current day of the week — "Monday", "Tuesday", …
Requirements
Python 3.10+
Related MCP server: mcp-local-gateway
Setup & run from scratch
Using uv (recommended)
# Run the server
uv run mcp-week-dayFirst run might take some time as a virtual environment will be created and dependencies will be installed into it.
Using pip
# Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate # on Windows: .venv\Scripts\activate
# Install the project (+ dependencies)
pip install -e .
# Run the server
mcp-week-dayThe server communicates over stdio using the MCP protocol.
Register with an MCP client
Add an entry like this to your client's MCP configuration:
{
"mcpServers": {
"week-day": {
"command": "uv",
"args": ["run", "mcp-week-day"]
}
}
}If you installed with pip into an activated environment, you can instead use
"command": "mcp-week-day" with no args.
Tool
Tool | Arguments | Returns |
| none | The current weekday name, e.g. |
Available Tools
1 toolday_in_weekA
Return the current day of the week (e.g. "Monday", "Tuesday").
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description plainly states that the tool returns the current day of the week, making the behavior transparent. No side effects are mentioned, but the description is sufficiently clear for a read-only operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise and well-structured, providing the essential information in a single sentence without any superfluous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description fully specifies what the tool returns (the day of the week) and even gives examples, which is sufficient given no parameters and no output schema details. Nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, so there is nothing to add beyond the empty schema. The description correctly implies no inputs are required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Return') and a specific resource ('the current day of the week'), with examples. No ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool, but there are no sibling tools or alternatives, so the context is implicitly clear. The absence of alternatives makes explicit usage instruction unnecessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
v0.1.0- First observed
day_in_week
TDQS
Scored across 1 tool
Only one tool exists, so there is no possibility of overlap or confusion.
The single tool name 'day_in_week' is clear, descriptive, and follows a consistent snake_case convention.
A single tool feels extremely minimal for a general-purpose MCP server, even if the domain is narrowly focused on weekdays.
The tool only returns the current weekday; it lacks related functionality such as date formatting, day number, or validation, leaving the surface quite thin.
Maintenance
Related MCP Connectors
POC MCP server. Tool say_hello returns 'Welcome' (agent -> MCP -> API path).
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA basic MCP server for testing with echo, datetime, and calculator tools.25 npm-
- FlicenseNot gradedqualityBmaintenanceMinimal MCP server exposing a single tool, run_date, to execute the local date command via a Streamable HTTP endpoint.-
- AlicenseAqualityCmaintenanceA minimal MCP server that provides a single 'hello' tool returning 'Hello, world!'.26 npmMIT
- FlicenseNot gradedqualityCmaintenanceA minimal MCP server offering a hello_world tool that returns a greeting and current UTC time via streamable HTTP.-