← Registry

Learning Resources

moja.work

Provides access to a glossary of tech buzzwords and a showcase of DIY/design projects.

2 endpoints22 known toolsFirst detected July 17, 2026Last detected August 24, 2026

ENDPOINT 1

https://moja.work/mcp

No auth detected

MCP server metadata

Name
moja.work
Version
1.0.0
Capabilities
tools
Server instructions

Read-only access to the moja.work portfolio: the start page (who this is, in the author's own words), tech buzzword glossary, DIY/design projects, career timeline (whole, or one station with its years), contact details, public YouTube playlists, code documentation, the platform pages (the monorepo, UI library, packages and interfaces behind the site), their typed facts and the dated news of the start page.

Known tools 18

list_buzzwords

List all tech/tool buzzwords in the moja.

Inferred read-only
get_buzzword

Get the full glossary entry (plain text) for one buzzword by its id.

Inferred read-only
search_buzzwords

Full-text search across the buzzword glossary; returns matching entries with a snippet.

Inferred read-only
list_projects

List the DIY / design projects showcased on moja.

Inferred read-only
get_project

Get a project intro (plain text) plus its images by project id.

Inferred read-only
get_timeline

Get the professional career timeline / CV of Markus Lungwitz: the introduction of the timeline page as plain text, a `shelf` (one line per station: id, folder, title, years) and every station in full — years as written (`time`) and as numbers (`from`, `to`; `to` null = still there), description, keywords and all texts.

Inferred read-only
get_timeline_station

Get one station of the career timeline by id or folder name — e.

Inferred read-only
get_home

Get the start page of moja.

Inferred read-only
get_epos

Get "The Chronicle of the Three Realms" — the epic retelling of the moja.

Inferred read-only
get_contact

Get public contact details / vCard (name, email, phone, url, avatar, QR code).

Potential side effects
get_references

Get external design references (Behance projects) as {id, name, url, fields, cover}.

Inferred read-only
list_youtube_playlists

List the public YouTube playlists of the moja.

Inferred read-only
get_youtube_playlist

Get one YouTube playlist of the moja.

Inferred read-only
list_docs

List the auto-generated code documentation sets (Compodoc) for the moja-work monorepo, with their URLs.

Inferred read-only
get_docs

Get the LLM-friendly code documentation (Compodoc llm-md export) for one project of the monorepo.

Inferred read-only
get_platform

Get the "Plattform" pages — moja.

Inferred read-only
list_news

List the news of the moja.

Inferred read-only
get_platform_facts

Get the platform facts behind the Plattform pages as typed values with their build stamp: versions (Angular, Nx, Tailwind, the ui library), counts (components, stories, npm releases, deploy targets), dates (first commit, first npm publish) — the same /website/values.

Potential side effects

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.moja-work]
url = "https://moja.work/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "moja-work": {
      "type": "http",
      "url": "https://moja.work/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: moja-work
Remote MCP URL: https://moja.work/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "moja-work": {
      "url": "https://moja.work/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "moja-work": {
      "type": "http",
      "url": "https://moja.work/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "moja-work",
  "transport": "streamable-http",
  "url": "https://moja.work/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://moja.work/ui/mcp

No auth detected

MCP server metadata

Name
moja.work/ui
Version
1.0.0
Capabilities
tools
Server instructions

Read-only catalog of the @mojawork/ui component library in two layers. The TRUTH: list every exported component with its layer and what it does and does not, or read one component's full documentation page (prose, story source as a usage example, the input table). The GUIDE: get_guide serves recommendations — use for, not for, instead, shown in — written by an agent from named sources, plus the house rules every consumer of the library builds by. Where guide and page disagree, the page wins. The human view of the same library is the Storybook at https://moja.work/storybook/.

Known tools 4

list_components

All components the @mojawork/ui barrel exports: selector, area, and the first sentence of what each one does and does not.

Inferred read-only
get_component_doc

The docs.mdx of one ui component, verbatim — the truth layer: what it does and does not.

Inferred read-only
get_guide

The usage guide: recommendations — use for, not for, instead, shown in — written by an agent from named sources.

Inferred read-only
get_usage

The usage contract of @mojawork/ui: the rules that hold for EVERY component, not for one — Angular signals and zoneless change detection, the one fixed forms format, styling on the design tokens, the cascade-layer line a consumer with Tailwind must declare or lose every utility on a ui tag, the keyboard rules around disabled controls, and where the rest of the documentation lives.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.moja-work-ui]
url = "https://moja.work/ui/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "moja-work-ui": {
      "type": "http",
      "url": "https://moja.work/ui/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: moja-work-ui
Remote MCP URL: https://moja.work/ui/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "moja-work-ui": {
      "url": "https://moja.work/ui/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "moja-work-ui": {
      "type": "http",
      "url": "https://moja.work/ui/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "moja-work-ui",
  "transport": "streamable-http",
  "url": "https://moja.work/ui/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for moja.work was fetched 2026-09-18T17:46:39.458Z.

Trust status Trusted

moja.work is assessed as Trusted: Domain has an established technology history spanning over a year.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.