Procesio MCP Server
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., "@Procesio MCP Serverlist my available automation workflows"
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.
Procesio MCP Server
This is a Model Context Protocol (MCP) server designed to interact with the Procesio automation platform API. It allows language models and other MCP clients to list, view, and manage Procesio workflows and instances.
This server uses API Key/Value authentication.
Features
Tools
The server currently provides the following tools:
procesio_test_authentication:Description: Tests the API Key/Value authentication by fetching current user details.
Input: None
Output: JSON object with user details on success.
procesio_list_projects:Description: Lists available Procesio process templates (workflows).
Input (Optional):
pageNumber(integer, default: 1),pageItemCount(integer, default: 20)Output: JSON object containing a paginated list of process templates.
procesio_get_project_details:Description: Gets details for a specific Procesio process template (workflow).
Input (Required):
projectId(string - UUID of the process template)Output: JSON object with the detailed configuration of the specified process template.
procesio_launch_project:Description: Launches an instance of a specific Procesio process template (workflow).
Input (Required):
projectId(string - UUID of the process template)Input (Optional):
payload(object),runSynchronous(boolean),debugMode(boolean),secondsTimeOut(integer),connectionId(string - passed as header)Output: JSON object with details about the launched instance (e.g., instance ID). Note: Launch may fail if the project is invalid.
procesio_get_instance_status:Description: Gets the status of a running or completed process instance.
Input (Required):
instanceId(string - UUID of the process instance)Input (Optional):
flowTemplateId(string - UUID of the original template),isArchived(boolean)Output: JSON object with the status details of the specified instance.
Related MCP server: kickflow MCP Server
Configuration
This server requires environment variables to be set for authentication and API endpoint configuration. These can be provided via:
.envfile: Create a.envfile in the project root (procesio-mcp-server/.env) with the following content:PROCESIO_API_KEY='YOUR_API_KEY' PROCESIO_API_VALUE='YOUR_API_VALUE' PROCESIO_USERNAME='your_procesio_username' # Still needed for initial check, though not used for auth PROCESIO_PASSWORD='your_procesio_password' # Still needed for initial check, though not used for auth PROCESIO_WEB_API_URL='https://webapi.procesio.app/' # Or your specific instance URL PROCESIO_REALM='procesio01' # Or your specific realm if differentMCP Settings File: Alternatively, configure these directly in the
envblock of your MCP client's settings file (e.g.,cline_mcp_settings.jsonorclaude_desktop_config.json). This method is preferred when running via an MCP client as it ensures the variables are correctly passed to the server process.{ "mcpServers": { "procesio": { "command": "node", "args": [ "/path/to/procesio-mcp-server/build/index.js" ], "env": { "PROCESIO_API_KEY": "YOUR_API_KEY", "PROCESIO_API_VALUE": "YOUR_API_VALUE", "PROCESIO_USERNAME": "your_procesio_username", "PROCESIO_PASSWORD": "your_procesio_password", "PROCESIO_WEB_API_URL": "https://webapi.procesio.app/", "PROCESIO_REALM": "procesio01" }, "disabled": false, "autoApprove": [] } } }Replace
/path/to/with the actual path to the server directory.
Development
Requires Node.js (LTS version recommended, see .nvmrc).
Install dependencies:
npm installBuild the server:
npm run buildFor development with auto-rebuild:
npm run watchRunning Locally (for testing)
Ensure environment variables are set (e.g., via .env or exported in your shell).
npm run build
node build/index.jsThe server will listen on stdio for MCP requests.
Certified by MCP Review
License
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for details.
Available Tools
1 toolcreate_noteC
Create a new note
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the note | |
| content | Yes | Text content of the note |
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. 'Create a new note' implies a write/mutation operation but reveals nothing about permissions needed, whether creation is idempotent, what happens on failure, or what the response contains. This leaves significant behavioral gaps for a mutation tool.
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 maximally concise with just three words that directly convey the core functionality. There's zero wasted language or unnecessary elaboration, making it efficiently front-loaded and easy to parse.
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?
For a mutation tool with no annotations and no output schema, the description is insufficiently complete. It doesn't address what happens after creation (return values, success indicators), error conditions, or system-specific behaviors. The combination of missing annotations and minimal description creates significant contextual 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 no parameter information beyond what's already in the schema (which has 100% coverage with clear descriptions for both required parameters). The baseline of 3 is appropriate since the schema adequately documents the parameters, though the description doesn't provide additional context about parameter constraints or relationships.
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 'Create a new note' clearly states the action (create) and resource (note), making the purpose immediately understandable. However, it lacks specific differentiation from potential siblings (though none exist in this context), and doesn't specify what kind of note system or context this operates within.
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, prerequisites, or contextual constraints. It simply states what the tool does without indicating appropriate scenarios or limitations for its use.
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. Dates show when Glama detected each change.
1 tool update
v0.1.0- First observed
create_note
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools. The single tool 'create_note' has a clearly distinct purpose, and an agent cannot misselect between non-existent alternatives.
The naming pattern is trivially consistent as there is only one tool. The tool name 'create_note' follows a clear verb_noun pattern, and with no other tools to compare, there are no deviations or inconsistencies.
A single tool is too few for a server named 'Procesio MCP Server', which suggests a broader scope. While 'create_note' is a specific function, the server name implies more comprehensive process or note management capabilities, making the tool count feel incomplete and under-scoped.
The server is severely incomplete for note management. With only a 'create_note' tool, there are significant gaps: no ability to read, update, delete, list, or search notes. This will cause agent failures as basic workflows (e.g., retrieving or modifying existing notes) are impossible.
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
Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.
Query, browse, and automate OmegaAI workspaces from any MCP client. Streamable HTTP with OAuth 2.0.
Automate 1,000+ services from any MCP-compatible AI agent: build Applets, run actions and queries.
Discover, preview, estimate, run, and retrieve reusable AI workflows.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables management of multiple N8N workflow automation instances through MCP. Supports listing, creating, updating, deleting, executing workflows and monitoring their executions across different N8N environments.200MIT

kickflow MCP Serverofficial
AlicenseNot gradedqualityAmaintenanceEnables interaction with the kickflow workflow management API through MCP, supporting comprehensive operations for tickets, approvals, users, teams, workflows, comments, and organizational management.4414MIT- FlicenseNot gradedqualityDmaintenanceEnables interaction with the hosted PacedLoop API to manage workflows and monitor process runs. It provides tools for workflow CRUD operations, run execution management, and access to detailed performance analytics within MCP-capable clients.-
- AlicenseNot gradedqualityDmaintenanceEnables AI models to manage workflows, credentials, nodes, templates, and monitor executions on the n8n automation platform through a standardized MCP interface.123,606MIT
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/serenichron/procesio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server