com.skopik/mcp
NPM · @SKOPIKLABS/MCP · 2 COMPONENTS · SCANNED AUG 3
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security86
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 19 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability84
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (good).Pass
- Tool/resource definitions use about 1228 tokens (~76/item across 16 items; 13 tools + 3 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage99
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 97% of tool parameters carry a description.Partial
- Structured output schemas are declared (85% of tools); any adoption earns full credit.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @skopiklabs/mcp
claude mcp add com-skopik-mcp -- npx -y @skopiklabs/mcp
codex mcp add com-skopik-mcp -- npx -y @skopiklabs/mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"com-skopik-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@skopiklabs/mcp"
],
"enabled": true
}
}
} openclaw mcp add com-skopik-mcp --command npx --arg -y --arg @skopiklabs/mcp
mcp_servers:
com-skopik-mcp:
command: "npx"
args: ["-y", "@skopiklabs/mcp"] {
"mcpServers": {
"com-skopik-mcp": {
"command": "npx",
"args": [
"-y",
"@skopiklabs/mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +39
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Dependency health: unverified → partial ▲ functional
- Schema quality: unverified → good ▲ functional
- Maintenance: unverified → pass ▲ functional
- License: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Licence: MIT functional
- 1 Aug 26 +5
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- MCP protocol: unverified → pass ▲ functional
- 31 Jul 26 −26
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 +29
- Tool coverage: unverified → 100 ▲ functional
- Schema quality: unverified → 100 ▲ functional
- 28 Jul 26 −29
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: 100 → unverified ▼ functional
- 27 Jul 26 47
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@skopiklabs/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 94 packages
94 packages in the resolved dependency tree · 94 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
skopik_agent_get Get agent ~36
Fetch one agent by id, including its full configuration.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | yes | Agent id (agent_...). |
| Name | Type | Req | Description |
|---|---|---|---|
| agent | object | yes | — |
No examples provided.
skopik_agent_message Message an agent ~158
Send a chat message to a Skopik agent and wait for its reply. Starts a new DM conversation unless conversation_id (from a previous call) is given. Returns the reply when it arrives within wait_seconds; otherwise returns the run id to poll with skopik_run_get.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | yes | Agent id (agent_...) to message. |
| conversation_id | string | — | Existing conversation id to continue. Omit to start a new DM with the agent. |
| text | string | yes | The message text. |
| thread_id | string | — | Optional thread id to continue a specific thread. |
| wait_seconds | number | — | Seconds to wait for the reply (default 25; 0 sends without waiting). |
| Name | Type | Req | Description |
|---|---|---|---|
| conversation_id | string | yes | — |
| message_id | — | yes | Id of the message that was sent. |
| note | string | — | — |
| replies | array | yes | All agent/runtime messages observed for this run. |
| reply | — | yes | The agent's reply, when it arrived in time. |
| run_id | — | yes | The agent run processing the message; null if no agent was dispatched. |
| run_status | — | yes | — |
No examples provided.
skopik_agents_list List agents ~49
List the AI agents in the caller's Skopik org: identity, status, model, and capability fields.
| Name | Type | Req | Description |
|---|---|---|---|
| user_id | string | — | Only agents owned by this user id. |
| Name | Type | Req | Description |
|---|---|---|---|
| agents | array | yes | — |
No examples provided.
skopik_api_get Skopik API GET ~84
Escape hatch: call any read-only Skopik API endpoint under /api/v1. Prefer the skopik_* domain tools when one covers the need. Use skopik_api_describe to discover available paths.
| Name | Type | Req | Description |
|---|---|---|---|
| path | string | yes | A Skopik API path beginning with /api/v1/. |
| query | object | — | Optional query parameters. |
No output schema declared.
No examples provided.
skopik_brain_read Read agent brain ~91
Read an agent's active brain snapshot (its versioned memory and identity files). Without a path: lists all files. With a path: returns that file's content.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | yes | Agent id (agent_...). |
| path | string | — | Brain file path (e.g. "AGENTS.md", "memory/MEMORY.md"). Omit to list files. |
| Name | Type | Req | Description |
|---|---|---|---|
| brain_snapshot | object | — | Snapshot metadata (when listing). |
| file | object | — | File content (when a path was given). |
| files | array | — | File entries (when listing). |
No examples provided.
skopik_run_get Get run ~44
Fetch one run (a single agent execution) by id: status, messages, cost, and error if any.
| Name | Type | Req | Description |
|---|---|---|---|
| run_id | string | yes | Run id. |
| Name | Type | Req | Description |
|---|---|---|---|
| run | object | yes | — |
No examples provided.
skopik_search Search platform content ~82
Semantic + lexical search over the org's indexed files, documents, and agent brains. Returns scored text chunks.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | — | Restrict to one agent's content. |
| limit | integer | — | Maximum results (default 10). |
| mode | string | — | Search mode (default hybrid). |
| query | string | yes | The search query. |
| Name | Type | Req | Description |
|---|---|---|---|
| diagnostics | object | — | — |
| results | array | yes | — |
No examples provided.
skopik_status Skopik Status ~50
Return MCP server diagnostics, configured Skopik API base URL, and exposed capabilities.
| Name | Type | Req | Description |
|---|---|---|---|
| includeEnvironment | boolean | — | Include set/unset diagnostics for supported environment variables. Secret values are never returned. |
No output schema declared.
No examples provided.
skopik_task_cancel Cancel task ~58
Cancel a task (and cascade to its open subtasks). Only unassigned, assigned, in_progress, or blocked tasks can be cancelled; terminal tasks are rejected.
| Name | Type | Req | Description |
|---|---|---|---|
| task_id | string | yes | Task id (task_...). |
| Name | Type | Req | Description |
|---|---|---|---|
| task | object | yes | — |
No examples provided.
skopik_task_create Create task ~149
Create a task in the caller's org, optionally assigned to an agent. Assignment normally auto-dispatches a run; set dispatch=true to force an immediate run and get its id back (requires the agents:run scope).
| Name | Type | Req | Description |
|---|---|---|---|
| assigned_to | string | — | Agent id (agent_...) to assign the task to. |
| dispatch | boolean | — | Immediately dispatch a run for the assigned agent. |
| priority | string | — | Default medium. |
| project_id | string | — | Project to file the task under. |
| prompt | string | yes | What the agent should do. |
| tags | array | — | — |
| title | string | — | Short display title; derived from the prompt when omitted. |
| Name | Type | Req | Description |
|---|---|---|---|
| dispatch_error | string | — | Set when the task was created but the explicit dispatch failed. |
| run | — | — | The dispatched run, when dispatch=true succeeded. |
| task | object | yes | — |
No examples provided.
skopik_task_get Get task ~44
Fetch one task by id, including prompt, status, assignment, and its canonical run id.
| Name | Type | Req | Description |
|---|---|---|---|
| task_id | string | yes | Task id (task_...). |
| Name | Type | Req | Description |
|---|---|---|---|
| task | object | yes | — |
No examples provided.
skopik_tasks_list List tasks ~87
List tasks in the caller's org, optionally filtered by status, assigned agent, project, or parent task.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | — | Only tasks assigned to this agent. |
| parent | string | — | Only subtasks of this parent task id. |
| project_id | string | — | Only tasks in this project. |
| status | string | — | Only tasks with this status. |
| Name | Type | Req | Description |
|---|---|---|---|
| tasks | array | yes | — |
No examples provided.
skopik_usage_summary Usage summary ~93
Aggregate usage and cost for the caller's org: total cost in USD, tokens, and call counts. Fields are camelCase.
| Name | Type | Req | Description |
|---|---|---|---|
| end_at | number | — | Window end (Unix ms). |
| kind | string | — | Restrict to one usage kind. |
| org_id | string | — | Org id; defaults to the caller's org. |
| start_at | number | — | Window start (Unix ms). |
| Name | Type | Req | Description |
|---|---|---|---|
| usage | object | yes | — |
No examples provided.