npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@laskoff/mcp-server

v1.7.6

Published

MCP Server for Laskoff platform with Vibe Coding workflow and comprehensive documentation. 270+ tools with detailed scenarios: Wiki (beautiful pages, task linking, hierarchy), Backlog (subtasks, RICE scoring, 12-stage workflow), Diagrams (Gantt, architect

Readme

@laskoff/mcp-server

MCP Server for Laskoff platform with Vibe Coding workflow and comprehensive documentation.

270+ tools with detailed scenarios: Wiki, Backlog, Diagrams, Notes, Bots, MiniApps.

Installation

npx @laskoff/mcp-server

Configuration

Qoder / Claude Desktop / Cursor

Add to your MCP configuration:

{
  "mcpServers": {
    "laskoff": {
      "command": "npx",
      "args": ["-y", "@laskoff/mcp-server"],
      "env": {
        "LASKOFF_URL": "https://laskoff.ru",
        "LASKOFF_MCP_KEY": "mcp_YOUR_KEY_HERE",
        "LASKOFF_PROJECT_ID": "YOUR_PROJECT_ID"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | LASKOFF_URL | Yes | API URL (https://laskoff.ru or https://dev.laskoff.ru) | | LASKOFF_MCP_KEY | Yes | MCP API key from organization settings | | LASKOFF_PROJECT_ID | No | Default project ID for backlog operations |


Tool Categories

| Category | Tools | Description | |----------|-------|-------------| | Backlog | 50+ | Tasks, subtasks, sprints, RICE scoring, 12-stage Vibe Coding workflow | | Wiki | 25+ | Pages, spaces, versions, comments, task linking | | Notes | 20+ | Personal notes, folders, categories, conversion to tasks/wiki | | MiniApps | 15+ | Templates (resume, landing, form, quiz, CRM), file management | | Diagrams | 10+ | Gantt charts, architecture, ER diagrams, flowcharts | | Bots | 15+ | Telegram bots, notification templates, groups | | AI | 15+ | Conversations, quests, transcription, roles, models | | Notifications | 10+ | User notifications, preferences, groups |


CRITICAL: Wiki HTML Formatting

Wiki API accepts ONLY HTML, NOT Markdown!

The Laskoff Wiki editor is built on TipTap - a WYSIWYG editor that:

  • Stores content in HTML format
  • Renders HTML directly without conversion
  • Does NOT parse Markdown syntax

If you pass Markdown to Wiki API - it will display as plain text!

Conversion Table

| Markdown | HTML | |----------|------| | # Heading | <h1>Heading</h1> | | ## Subheading | <h2>Subheading</h2> | | **bold** | <strong>bold</strong> | | *italic* | <em>italic</em> | | `code` | <code>code</code> | | [link](url) | <a href="url">link</a> | | - item | <ul><li>item</li></ul> | | 1. item | <ol><li>item</li></ol> | | Paragraph | <p>Paragraph</p> |

Tables

WRONG (Markdown):

| Col 1 | Col 2 |
|-------|-------|
| Data  | Data  |

CORRECT (HTML):

<table>
  <thead>
    <tr>
      <th>Col 1</th>
      <th>Col 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Data</td>
      <td>Data</td>
    </tr>
  </tbody>
</table>

Code Blocks

WRONG (Markdown):

```javascript
const x = 1;

**CORRECT (HTML):**
```html
<pre><code class="language-javascript">const x = 1;</code></pre>

Full Page Example

<h1>Feature Analysis</h1>

<h2>Description</h2>
<p>Brief description of the feature and its goals.</p>

<h2>Requirements</h2>
<ul>
  <li>Requirement 1</li>
  <li>Requirement 2</li>
  <li>Requirement 3</li>
</ul>

<h2>Status</h2>
<table>
  <thead>
    <tr>
      <th>Component</th>
      <th>Status</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Backend</td>
      <td>Done</td>
    </tr>
    <tr>
      <td>Frontend</td>
      <td>In Progress</td>
    </tr>
  </tbody>
</table>

<h2>Code Example</h2>
<pre><code class="language-typescript">
function example(): string {
  return "Hello World";
}
</code></pre>

Wiki Creation Checklist

When creating Wiki pages via MCP tools, ensure:

  • [ ] Use <h1>, <h2>, <h3> instead of #, ##, ###
  • [ ] Use <p> for paragraphs
  • [ ] Use <ul><li> instead of - item
  • [ ] Use <table> instead of | col |
  • [ ] Use <strong> instead of **bold**
  • [ ] Use <code> instead of `code`
  • [ ] Use <pre><code> for code blocks

MCP Tools Affected

NEVER pass Markdown to these tools:

  • laskoff_wiki_create_page - content parameter must be HTML
  • laskoff_wiki_update_page - content parameter must be HTML

Vibe Coding Workflow

The 12-stage development workflow:

| # | Status | Description | |---|--------|-------------| | 1 | backlog | Unassigned tasks queue | | 2 | todo | Taken into work | | 3 | general-analysis | Requirements analysis + Wiki | | 4 | splitting | Breaking into subtasks | | 5 | scoring | RICE scoring for subtasks | | 6 | system-analysis | Technical documentation | | 7 | backend-dev | Backend development | | 8 | frontend-dev | Frontend development | | 9 | code-review | Code review | | 10 | testing | Testing | | 11 | rework | Fixes from review/tests | | 12 | done | Completed |

RICE Scoring Formula

RICE Score = (Reach × Impact × Confidence) / Effort

| Parameter | Range | Description | |-----------|-------|-------------| | Reach | 1-10 | Users affected per week | | Impact | 1-5 | 1=minimal, 5=massive | | Confidence | 0-1 | 0.5=low, 0.8=medium, 1.0=high | | Effort | 0.5-10 | Person-days to implement |


Quick Start Examples

Create a Task with Score

// 1. Create task
const task = await laskoff_backlog_create_task({
  title: "Implement PDF Export",
  description: "Add PDF export functionality..."
});

// 2. Set RICE score (REQUIRED for prioritization!)
await laskoff_backlog_set_score({
  taskId: task.id,
  reach: 8,
  impact: 4,
  confidence: 0.8,
  effort: 3
});

Create Wiki Page (HTML!)

await laskoff_wiki_create_page({
  space_id: "project-docs",
  title: "API Documentation",
  content: `
    <h1>API Documentation</h1>
    <h2>Endpoints</h2>
    <table>
      <thead>
        <tr><th>Method</th><th>Path</th><th>Description</th></tr>
      </thead>
      <tbody>
        <tr><td>GET</td><td>/api/users</td><td>List users</td></tr>
        <tr><td>POST</td><td>/api/users</td><td>Create user</td></tr>
      </tbody>
    </table>
  `
});

Link Wiki to Task

// Two equivalent ways (bidirectional):
await laskoff_backlog_link_wiki({ taskId: 42, wikiPageId: 15 });
// OR
await laskoff_wiki_link_task({ pageId: 15, taskId: 42 });

Best Practices

  1. Always set RICE score after creating tasks - without score, tasks won't appear in get_next_task()

  2. Use HTML for Wiki - TipTap editor requires HTML, Markdown will display as plain text

  3. Link Wiki to Tasks - creates bidirectional traceability for requirements

  4. Follow Vibe Coding workflow - move tasks through statuses using move_task_status()

  5. Log actions - use log_action() for audit trail on stages 7-10

  6. Attach commits - use attach_commit() to link git commits to tasks


License

MIT