Utility MCP Server
The Utility MCP Server provides general-purpose utility tools for Computer Agent ecosystem integration:
Get current datetime: Retrieve current date/time in any timezone with multiple format options (ISO, readable, timestamp, custom)
Calculate time differences: Compute duration between two dates or from a past date to present, with detailed breakdown of days, hours, minutes, and seconds
Download Read.AI meeting data: Download meeting transcripts and summaries from Read.AI platform (requires API key, currently limited due to lack of public API documentation)
Check server status: Verify configuration and availability of all utility 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., "@Utility MCP Serverwhat's the current time in Tokyo?"
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.
Utility MCP Server
General-purpose MCP server providing utility tools for Computer Agent ecosystem integration.
Features
DateTime Tools ⭐ NEW
Tool:
get_current_datetimePurpose: Get current date/time in any timezone with multiple format options
Status: ✅ Ready - No configuration required
Timezones: Full pytz database support (UTC, US/Eastern, Europe/London, America/Sao_Paulo, etc.)
Formats: ISO, readable, timestamp, custom
Tool:
calculate_time_differencePurpose: Calculate time differences between dates or from a date to now
Status: ✅ Ready - No configuration required
Features: Detailed breakdown (days, hours, minutes, seconds), multiple input formats
Read.AI Meeting Downloader
Tool:
download_meeting_dataPurpose: Download meeting transcripts and summaries from Read.AI platform
Status: ⚠️ API Key Required - Read.AI API documentation not publicly available
Configuration: Requires
READ_AI_API_KEYenvironment variable
Server Status
Tool:
util_server_statusPurpose: Check configuration and availability of all utility tools
Related MCP server: Coding Agent MCP Server
Installation
cd /home/danfmaia/_repos/_mcp/util-mcp
uv installUsage
MCP Server (via Cursor)
The server is configured in /home/danfmaia/.cursor/mcp.json:
{
"utilities": {
"name": "Utility MCP Server",
"type": "command",
"command": "/home/danfmaia/.local/bin/uv",
"args": [
"--directory",
"/home/danfmaia/_repos/_mcp/util-mcp",
"run",
"util_server.py"
]
}
}Standalone Testing
uv run util_server.pyTesting DateTime Tools
uv run python test_datetime.pyUsage Examples
DateTime Tools
Get current time in different timezones:
get_current_datetime("UTC", "readable")→ "Tuesday, September 09, 2025 at 11:56:34 PM UTC"get_current_datetime("America/Sao_Paulo", "iso")→ "2025-09-09T20:56:34-03:00"get_current_datetime("US/Eastern", "custom")→ "2025-09-09 19:56:34 EDT"
Calculate time differences:
calculate_time_difference("2025-09-09 10:00:00", "2025-09-09 14:30:00", "UTC")→ "4 hours, 30 minutes"calculate_time_difference("2025-09-08 15:00:00", "", "UTC")→ Time from yesterday 3pm to now
Technical Constraints
Read.AI API Limitation
Current Status: No publicly available Read.AI API documentation or third-party access endpoints identified.
Search Evidence:
Cursor native @Web search: No API documentation found
Custom MCP web research: No API endpoints discovered
Technical assessment: Browser automation would require significant maintenance overhead
Recommendation: Manual download workflow until Read.AI provides official API access.
Dependencies
mcp: Model Context Protocol frameworkhttpx: HTTP client for potential API callspytz: Timezone database for datetime operationsfastmcp: Simplified MCP server development
Development
Built using FastMCP framework for simplified MCP server development and maintenance.
Available Tools
4 toolscalculate_time_differenceA
Calculate the time difference between two datetimes or from a start time to now.
Args:
start_datetime: Start datetime in ISO format (YYYY-MM-DD HH:MM:SS or YYYY-MM-DDTHH:MM:SS)
end_datetime: End datetime in ISO format (optional - defaults to current time)
timezone_name: Timezone for interpretation (default: UTC)
Returns:
Time difference with detailed breakdown
| Name | Required | Description | Default |
|---|---|---|---|
| start_datetime | Yes | ||
| end_datetime | No | ||
| timezone_name | No | UTC |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the tool's behavior by describing what it calculates and the return format ('Time difference with detailed breakdown'), but doesn't mention error handling, performance characteristics, or limitations like maximum date ranges.
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 perfectly structured with a clear purpose statement followed by well-organized Args and Returns sections. Every sentence earns its place by providing essential information without redundancy or fluff.
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?
Given the tool's moderate complexity, 3 parameters with 0% schema coverage, and the presence of an output schema, the description is quite complete. It explains the tool's purpose, parameters, and return value. The main gap is the lack of behavioral details like error cases or limitations.
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 description adds significant value beyond the 0% schema description coverage by explaining each parameter's purpose, format requirements ('ISO format'), and defaults. It clarifies that end_datetime is optional and defaults to current time, and that timezone_name defaults to UTC - information not present in the schema.
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 the tool's purpose with specific verbs ('calculate the time difference') and resources ('between two datetimes or from a start time to now'). It distinguishes itself from sibling tools like 'get_current_datetime' by focusing on difference calculation rather than current time retrieval.
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?
The description provides clear context for when to use this tool ('between two datetimes or from a start time to now') and mentions the optional end_datetime defaulting to current time. However, it doesn't explicitly state when NOT to use it or mention alternatives among sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
download_meeting_dataC
Download meeting transcript and/or summary from Read.AI.
Args:
meeting_id: Read.AI meeting ID
include_transcript: Whether to download the full transcript (default: True)
include_summary: Whether to download the meeting summary (default: True)
Returns:
Meeting data in formatted text or JSON structure
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | ||
| include_transcript | No | ||
| include_summary | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool downloads data, implying a read operation, but doesn't cover critical aspects like authentication requirements, rate limits, error handling, or whether it's idempotent. The description adds minimal behavioral context beyond the basic action.
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 well-structured with sections for Args and Returns, using bullet points for clarity. It's front-loaded with the purpose and avoids unnecessary details. However, the 'Returns' section could be more concise, and some sentences are slightly verbose (e.g., 'in formatted text or JSON structure').
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?
Given the tool's moderate complexity (3 parameters, no annotations, but with an output schema), the description is partially complete. It covers the purpose and parameters but lacks behavioral details (e.g., auth, errors). The output schema exists, so the description doesn't need to explain return values in depth, but overall it's adequate with clear gaps.
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?
Schema description coverage is 0%, so the description must compensate. It lists all three parameters with brief explanations (e.g., 'Read.AI meeting ID') and default values, adding meaning beyond the schema's titles. However, it doesn't detail format constraints (e.g., meeting_id structure) or interactions between include_transcript and include_summary, leaving gaps.
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 the tool's purpose: 'Download meeting transcript and/or summary from Read.AI.' It specifies the verb (download) and resource (meeting transcript/summary) with the source (Read.AI). However, it doesn't differentiate from sibling tools, which are unrelated (time calculation, datetime, server status), so no sibling distinction is needed or provided.
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?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication), context for meeting_id sourcing, or comparison to other data retrieval methods. The usage is implied by the purpose but lacks explicit when/when-not instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_current_datetimeA
Get the current date and time in the specified timezone and format.
Args:
timezone_name: Timezone name (e.g., "UTC", "US/Eastern", "Europe/London", "America/Sao_Paulo")
format_type: Format type ("iso", "readable", "timestamp", "custom")
Returns:
Current datetime in the requested format
| Name | Required | Description | Default |
|---|---|---|---|
| timezone_name | No | UTC | |
| format_type | No | iso |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions what the tool does but lacks behavioral details such as whether it requires authentication, has rate limits, or how errors are handled (e.g., invalid timezone). The description is functional but misses key operational context for a tool with parameters.
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 well-structured with a clear opening sentence and organized sections for Args and Returns. It's appropriately sized, but the 'Returns' section is somewhat redundant given the presence of an output schema, slightly reducing efficiency without adding unique value.
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?
Given the tool's low complexity (2 parameters, no nested objects) and the presence of an output schema (which handles return values), the description is mostly complete. It covers purpose and parameters well, but could improve by adding more behavioral context (e.g., error handling) since annotations are absent, leaving minor gaps.
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 description adds significant meaning beyond the input schema, which has 0% coverage. It explains both parameters: timezone_name with examples (e.g., 'UTC', 'US/Eastern') and format_type with options ('iso', 'readable', 'timestamp', 'custom'), clarifying their purposes and valid values, fully compensating for the schema's lack of descriptions.
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 the tool's purpose with specific verb ('Get') and resource ('current date and time'), including key aspects like timezone and format. It distinguishes itself from sibling tools (e.g., calculate_time_difference, download_meeting_data) by focusing solely on retrieving current datetime without calculations or data downloads.
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?
The description implies usage through the mention of 'specified timezone and format', suggesting it's for when formatted datetime is needed. However, it lacks explicit guidance on when to use this tool versus alternatives (e.g., no comparison to calculate_time_difference for time calculations) or any exclusions, leaving usage context somewhat inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
util_server_statusB
Check the status of all utility server integrations.
Returns:
Status report of available utilities and their configuration
| 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?
With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool 'checks' status and returns a report, which implies a read-only operation, but doesn't specify if it requires authentication, has rate limits, or affects system state. The description adds minimal behavioral context beyond the basic action, missing details like whether it performs active probing or returns cached data.
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. The first sentence directly states the tool's purpose, and the 'Returns:' section clearly indicates the output without unnecessary elaboration. Every sentence earns its place, with no redundant or vague phrasing, making it easy to parse quickly.
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?
Given the tool's simplicity (zero parameters, no annotations, but with an output schema), the description is reasonably complete. It explains what the tool does and what it returns, and the output schema will handle return value details. However, it lacks context about the utility integrations (e.g., what types, why check them), which could help an agent understand when this tool is relevant.
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 zero parameters, and the input schema has 100% description coverage (though empty). The description appropriately doesn't discuss parameters, as none exist. It could theoretically mention that no inputs are required, but this is adequately covered by the schema. The baseline for zero parameters is 4, as the description doesn't need to compensate for any parameter documentation gaps.
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 the tool's purpose with a specific verb ('Check') and resource ('status of all utility server integrations'), making it immediately understandable. It distinguishes itself from siblings like 'calculate_time_difference' or 'download_meeting_data' by focusing on system status rather than data processing or retrieval. However, it doesn't explicitly differentiate from potential similar tools (e.g., 'check_server_health'), which prevents a perfect score.
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?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, timing considerations, or suggest using other tools for related tasks. For example, it doesn't clarify if this should be used before invoking utility-dependent tools like 'download_meeting_data', leaving usage context entirely implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose with no overlap: time calculation, meeting data download, current datetime retrieval, and server status check. The descriptions clearly differentiate their functions, eliminating any risk of misselection.
Three tools follow a consistent verb_noun pattern (calculate_time_difference, download_meeting_data, get_current_datetime), but util_server_status deviates by using a noun_verb_noun structure. The deviation is minor and doesn't significantly impact readability.
Four tools is reasonable for a utility server, though slightly thin for covering multiple domains like time and meeting data. Each tool earns its place, but the scope feels a bit broad for just four tools.
For the time-related tools, there's basic coverage (calculate difference, get current time), but missing operations like timezone conversion or date arithmetic. For meeting data, download is covered but no create/update/delete. The server status tool is standalone. Notable gaps exist that agents may need to work around.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Manage Speko voice-AI agents, sessions, calls, phone numbers, knowledge bases, evals, and docs.
Machine-readable utilities and datasets for AI agents.
Read-only MCP tools for AI agent discovery, structured resources, and NIULAI information.
Utility tools for AI agents: hashing, text stats, validation, DNS, currency, GEO audits.
Related MCP Servers
- FlicenseAqualityDmaintenanceA general-purpose MCP server that provides utility tools for echo, date/time, and file operations within Claude Code and Claude Desktop. It functions as an extensible framework designed to help developers easily build and register custom Python-based tools.11
- AlicenseBqualityBmaintenanceProvides coding agent capabilities including file operations, terminal commands, search functionality, and utility operations.27175MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents and users to manage workspace files, monitor system metrics, take persistent notes, and retrieve weather data via MCP tools and resources.
- FlicenseNot gradedqualityDmaintenanceProvides a versatile set of utility tools for LLMs, including text processing, web fetching, and search capabilities, all accessible via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/danfmaia/util-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server