time vs mcp-server-salesforce
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-server-salesforce by tsmztech | |
|---|---|---|
| Stars | ★ 85,748 | ★ 156 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-salesforce · Summary
MCP server that enables Claude to interact with Salesforce objects, records, metadata, and Apex code.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
mcp-server-salesforce · Use cases
- Salesforce administrators and developers using Claude to interact with Salesforce data through natural language queries
- Business analysts exploring Salesforce data and creating custom objects without writing complex SOQL queries
- Developers managing Apex code and triggers through Claude's interface
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}mcp-server-salesforce · Install
Installation
Global Installation (npm)
npm install -g @tsmztech/mcp-server-salesforceClaude Desktop Configuration
For Claude Desktop, add to your claude_desktop_config.json:
For Salesforce CLI Authentication:
{
"mcpServers": {
"salesforce": {
"command": "npx",
"args": ["-y", "@tsmztech/mcp-server-salesforce"],
"env": {
"SALESFORCE_CONNECTION_TYPE": "Salesforce_CLI"
}
}
}
}For Username/Password Authentication:
{
"mcpServers": {
"salesforce": {
"command": "npx",
"args": ["-y", "@tsmztech/mcp-server-salesforce"],
"env": {
"SALESFORCE_CONNECTION_TYPE": "User_Password",
"SALESFORCE_USERNAME": "your_username",
"SALESFORCE_PASSWORD": "your_password",
"SALESFORCE_TOKEN": "your_security_token",
"SALESFORCE_INSTANCE_URL": "org_url"
}
}
}
}