Simplicate MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SIMPLICATE_API_KEY | Yes | Your Simplicate API key | |
| SIMPLICATE_API_SECRET | Yes | Your Simplicate API secret | |
| SIMPLICATE_API_BASE_URL | Yes | Your Simplicate API base URL (e.g., https://yourdomain.simplicate.com/api/v2) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_projectsB | Retrieve a list of all projects |
| get_projectC | Get details of a specific project by ID |
| create_projectC | Create a new project |
| update_projectC | Update an existing project |
| delete_projectC | Delete a project |
| get_project_servicesC | Get services/items for a specific project |
| get_tasksC | Retrieve project tasks |
| get_organizationsC | Retrieve CRM organizations |
| get_organizationC | Get specific organization by ID |
| create_organizationC | Create a new organization |
| update_organizationD | Update an organization |
| get_personsC | Retrieve contact persons |
| get_personC | Get specific person by ID |
| create_personC | Create a new contact person |
| update_personD | Update a person |
| get_quotesC | Retrieve sales quotes |
| get_quoteC | Get specific quote by ID |
| create_quoteC | Create a new sales quote |
| get_salesC | Retrieve sales records |
| get_saleC | Get specific sale by ID |
| get_hoursC | Retrieve timesheet hours |
| get_hours_entryC | Get specific hours entry by ID |
| create_hoursC | Create a new hours entry |
| update_hoursC | Update hours entry |
| delete_hoursC | Delete hours entry |
| get_timesheetsD | Retrieve timesheets |
| get_leaveC | Retrieve leave/vacation entries |
| create_leaveC | Create leave/vacation entry |
| get_calendar_eventsC | Get calendar/planning events |
| get_invoicesD | Retrieve invoices |
| get_invoiceC | Get specific invoice by ID |
| create_invoiceD | Create a new invoice |
| update_invoiceD | Update an invoice |
| get_paymentsC | Retrieve invoice payments |
| create_paymentD | Create a payment record |
| get_revenueC | Retrieve revenue records |
| get_employeesC | Retrieve employees |
| get_employeeC | Get specific employee by ID |
| get_absencesC | Retrieve employee absences |
| create_absenceD | Create absence record |
| get_servicesC | Retrieve services catalog |
| get_serviceC | Get specific service by ID |
| create_serviceC | Create a new service |
| get_default_servicesB | Get default services configuration |
| get_taskC | Get specific task by ID |
| create_taskD | Create a new task |
| update_taskD | Update a task |
| get_costsC | Retrieve project costs |
| get_costC | Get specific cost by ID |
| create_costD | Create a cost entry |
| get_mileageC | Retrieve mileage records |
| create_mileageC | Create mileage entry |
| get_documentsC | Retrieve documents |
| get_documentC | Get specific document by ID |
| get_contractsD | Retrieve contracts |
| get_contractC | Get specific contract by ID |
| create_contractD | Create a new contract |
| get_custom_fieldsC | Retrieve custom field definitions |
| searchC | Search across Simplicate resources |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Projects | All projects |
| Organizations | CRM organizations |
| Persons | Contact persons |
| Hours | Timesheet hours |
| Invoices | All invoices |
| Employees | All employees |
| Quotes | Sales quotes |
| Sales | Sales records |
| Services | Service catalog |
| Tasks | Project tasks |
| Costs | Project costs |
| Contracts | All contracts |
| Documents | All documents |
TDQS
Scored across 59 tools
Every tool has a clearly distinct purpose with no ambiguity. Tools are organized by resource type (e.g., absence, contract, hours) and action (create, get, update, delete), making it easy to distinguish between them. The naming convention clearly indicates which resource and operation each tool handles.
Tool names follow a highly consistent verb_noun pattern throughout, with verbs like create, get, update, delete, and search paired with specific nouns. All tools use snake_case consistently, and there are no deviations in naming style or structure across the entire set.
With 59 tools, the count is excessive for typical MCP server purposes, making it heavy and potentially overwhelming for agents. While the server covers a broad domain (CRM, project management, invoicing), the large number of tools suggests over-fragmentation rather than a well-scoped, streamlined interface.
The tool surface provides complete CRUD/lifecycle coverage for the Simplicate domain, including resources like absences, contracts, hours, invoices, organizations, persons, projects, quotes, services, and tasks. There are no obvious gaps, with create, get, update, and delete operations available for most core entities, plus auxiliary tools like search and custom fields.