@loyalekoinu/workiom-basic-mcp-server
v1.3.0
Published
MCP Server generated from OpenAPI spec for workiom
Readme
workiom
API server for Workiom with basic app/data functionality. This is for (CRUD) creating, reading, updating, and deleting records, lists and apps.
Getting Started
- Install dependencies:
npm install- Start the server:
npm startConfiguration
The server can be configured using environment variables. See the .env.example file for available options.
API Documentation
This can be run as a streaming HTTP mcp server or an STDIO server.
In your MCP json file add (make sure to replace the API key with your own so it can acccess your apps):
{
"mcpServers": {
"workiom-basic": {
"command": "npx",
"args": [
"-y",
"@loyalekoinu/workiom-basic-mcp-server"
],
"env": {
"WORKIOM_BASE_URL": "https://api.workiom.com",
"WORKIOM_API_KEY": "REPLACE-WITH-YOUR-API-KEY"
}
}
} }Tool Scopes
You can configure which tools are exposed by the MCP server by using the --tools option at start time.
Available scopes:
workiom-workiom-data, workiom-workiom-apps, workiom-workiom-lists
Available permissions:
- all
- create
- read
- update
- delete
