@vitrion/zentria-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ZENTRIA_API_KEY | Yes | Team Personal Access Token | |
| ZENTRIA_BASE_URL | No | Zentria origin (default https://app.zentria.nl). Do not append /api/public. | https://app.zentria.nl |
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get-me | Return the signed-in user, PAT-bound team, enabled modules, and token scopes (GET /api/public/me). Call this first to learn team id and available modules. |
| list-teams | List teams visible to this PAT (GET /api/public/teams). A team-bound PAT returns exactly one team. |
| get-team | Fetch a team by id (GET /api/public/teams/{id}). |
| list-tenants | List tenants for this PAT (GET /api/public/tenants). |
| get-tenant | Fetch a tenant by id (GET /api/public/tenants/{id}). |
| list-todos | List to-dos for the PAT-bound team (GET /api/public/teams/{teamId}/todos). Scope: todos:read. |
| create-todo | Create a to-do on the PAT-bound team (POST /api/public/teams/{teamId}/todos). Scope: todos:write. |
| get-todo | Fetch a to-do by id (GET /api/public/todos/{id}). Scope: todos:read. |
| update-todo | Update a to-do (PUT /api/public/todos/{id}). Scope: todos:write. |
| delete-todo | Delete a to-do (DELETE /api/public/todos/{id}). Scope: todos:write. |
| list-people | List sales people/contacts (GET /api/public/sales/people). Scope: sales:read. |
| create-person | Create a sales person (POST /api/public/sales/people). Scope: sales:write. |
| get-person | Fetch a sales person (GET /api/public/sales/people/{id}). Scope: sales:read. |
| update-person | Update a sales person (PUT /api/public/sales/people/{id}). Scope: sales:write. |
| list-deals | List sales deals (GET /api/public/sales/deals). Optional pipelineId filter. Scope: sales:read. |
| create-deal | Create a sales deal (POST /api/public/sales/deals). pipelineId is required. Scope: sales:write. |
| get-deal | Fetch a sales deal (GET /api/public/sales/deals/{id}). Scope: sales:read. |
| update-deal | Update a sales deal (PUT /api/public/sales/deals/{id}). Scope: sales:write. |
| move-deal-stage | Move a deal to another pipeline stage (PATCH /api/public/sales/deals/{id}/stage). Scope: sales:write. |
| list-notes | List sales notes (GET /api/public/sales/notes). Scope: sales:read. |
| create-note | Create a sales note (POST /api/public/sales/notes). Scope: sales:write. |
| get-note | Fetch a sales note (GET /api/public/sales/notes/{id}). Scope: sales:read. |
| update-note | Update a sales note (PATCH /api/public/sales/notes/{id}). Scope: sales:write. |
| delete-note | Delete a sales note (DELETE /api/public/sales/notes/{id}). Scope: sales:write. |
| list-activities | List sales activities (GET /api/public/sales/activities). Scope: sales:read. |
| create-activity | Create a sales activity (POST /api/public/sales/activities). Scope: sales:write. |
| get-activity | Fetch a sales activity (GET /api/public/sales/activities/{id}). Scope: sales:read. |
| update-activity | Update or complete/cancel a sales activity (PATCH /api/public/sales/activities/{id}). Set status to done or cancelled. Scope: sales:write. |
| list-organizations | List sales organizations (GET /api/public/sales/organizations). Scope: sales:read. |
| create-organization | Create a sales organization (POST /api/public/sales/organizations). Scope: sales:write. |
| get-organization | Fetch a sales organization (GET /api/public/sales/organizations/{id}). Scope: sales:read. |
| update-organization | Update a sales organization (PUT /api/public/sales/organizations/{id}). Scope: sales:write. |
| list-pipelines | List sales pipelines (GET /api/public/sales/pipelines). Scope: sales:read. |
| get-pipeline | Fetch a sales pipeline with stages (GET /api/public/sales/pipelines/{id}). Scope: sales:read. |
| get-default-pipeline | Fetch the team default sales pipeline (GET /api/public/sales/pipeline). Scope: sales:read. |
| list-forms | List sales forms (GET /api/public/sales/forms). Scope: sales:read. |
| create-form | Create a sales form (POST /api/public/sales/forms). Scope: sales:write. |
| get-form | Fetch a sales form (GET /api/public/sales/forms/{id}). Scope: sales:read. |
| update-form | Update a sales form (PUT /api/public/sales/forms/{id}). Scope: sales:write. |
| list-form-submissions | List sales form submissions (GET /api/public/sales/submissions). Scope: sales:read. |
| get-form-submission | Fetch a sales form submission (GET /api/public/sales/submissions/{id}). Scope: sales:read. |
| list-customers | List customers (GET /api/public/customers). Scope: customers:read. |
| create-customer | Create a customer (POST /api/public/customers). Scope: customers:write. |
| get-customer | Fetch a customer (GET /api/public/customers/{id}). Scope: customers:read. |
| update-customer | Update a customer (PUT /api/public/customers/{id}). Scope: customers:write. |
| archive-customer | Archive a customer (PATCH /api/public/customers/{id}/archive). Scope: customers:write. |
| list-customer-contacts | List contacts for a customer (GET /api/public/customers/{customerId}/contacts). Scope: customers:read. |
| create-customer-contact | Create a contact on a customer (POST /api/public/customers/{customerId}/contacts). Scope: customers:write. |
| get-contact | Fetch a customer contact (GET /api/public/contacts/{id}). Scope: customers:read. |
| update-contact | Update a customer contact (PUT /api/public/contacts/{id}). Scope: customers:write. |
| list-crm-leads | List CRM leads (GET /api/public/crm/leads). Scope: crm:read. |
| get-crm-lead | Fetch a CRM lead (GET /api/public/crm/leads/{id}). Scope: crm:read. |
| approve-crm-lead | Approve a CRM lead (POST /api/public/crm/leads/{id}/approve). Scope: crm:write. |
| reject-crm-lead | Reject a CRM lead (POST /api/public/crm/leads/{id}/reject). Scope: crm:write. |
| list-crm-submissions | List CRM lead submissions (GET /api/public/crm/submissions). Scope: crm:read. |
| get-crm-submission | Fetch a CRM lead submission (GET /api/public/crm/submissions/{id}). Scope: crm:read. |
| list-stl-flows | List Speed to Lead flows (GET /api/public/stl/flows). Scope: stl:read. |
| create-stl-flow | Create a Speed to Lead flow (POST /api/public/stl/flows). Scope: stl:write. |
| get-stl-flow | Fetch a Speed to Lead flow (GET /api/public/stl/flows/{id}). Scope: stl:read. |
| update-stl-flow | Update a Speed to Lead flow (PUT /api/public/stl/flows/{id}). Scope: stl:write. |
| delete-stl-flow | Delete a Speed to Lead flow (DELETE /api/public/stl/flows/{id}). Scope: stl:write. |
| list-stl-sms-templates | List STL SMS templates (GET /api/public/stl/sms-templates). Scope: stl:read. |
| create-stl-sms-template | Create an STL SMS template (POST /api/public/stl/sms-templates). Scope: stl:write. |
| get-stl-sms-template | Fetch an STL SMS template (GET /api/public/stl/sms-templates/{id}). Scope: stl:read. |
| update-stl-sms-template | Update an STL SMS template (PUT /api/public/stl/sms-templates/{id}). Scope: stl:write. |
| delete-stl-sms-template | Delete an STL SMS template (DELETE /api/public/stl/sms-templates/{id}). Scope: stl:write. |
| list-stl-leads | List Speed to Lead leads (GET /api/public/stl/leads). Scope: stl:read. |
| get-stl-lead | Fetch an STL lead (GET /api/public/stl/leads/{id}). Scope: stl:read. |
| delete-stl-lead | Delete an STL lead (DELETE /api/public/stl/leads/{id}). Scope: stl:write. |
| list-webhooks | List outbound webhook endpoints (GET /api/public/webhooks). Scope: webhooks:read. |
| create-webhook | Create a webhook endpoint. Signing secret returned once (POST /api/public/webhooks). Scope: webhooks:write. |
| get-webhook | Fetch a webhook endpoint (GET /api/public/webhooks/{id}). Scope: webhooks:read. |
| update-webhook | Update a webhook endpoint (PATCH /api/public/webhooks/{id}). Scope: webhooks:write. |
| delete-webhook | Delete a webhook endpoint (DELETE /api/public/webhooks/{id}). Scope: webhooks:write. |
| list-members | List team members (GET /api/public/members). Scope: members:read. |
| get-member | Fetch a team member (GET /api/public/members/{id}). Scope: members:read. |
| invite-member | Invite a member by email (POST /api/public/members). Scope: members:write. |
| change-member-role | Change a member role (PATCH /api/public/members/{id}/role). Scope: members:write. |
| get-settings | Fetch non-secret team settings (GET /api/public/settings). Scope: settings:read. |
| get-integrations | List connected integrations without secrets (GET /api/public/integrations). Scope: integrations:read. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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/vitrionbv/zentria-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server