Actuent
wtr-lab.com

WTR-LAB

Read English MTL (Machine Translation) Novels on WTR-LAB.com. All light novels here are translated from raw. Sign up to save your reading progress.

45
Partly agent-ready
Agent-readiness score out of 100
  • ✓ Clear description of the site
  • ✓ Several pages described
  • ✓ Actions agents can take
  • ○ 3 or more actions
  • ○ Publishes its own LAWP (/.well-known/lawp.json)
  • ○ Actions agents can execute
  • ○ Business details (address, hours, phone)

How to improve this score

Up to +55 points:
+10 · 3 or more actions
Most businesses have at least three: contact, book or order, and view prices.
+15 · Publishes its own LAWP (/.well-known/lawp.json)
Publish your starter lawp.json at /.well-known/lawp.json. WordPress: install the Actuent plugin. Cloudflare: use the one-click Worker.
+15 · Actions agents can execute
Give an action an endpoint on your domain so agents can do it for the user, not just link to it. See LAWP Actions.
+15 · Business details (address, hours, phone)
Add schema.org business data to your homepage (the starter snippet). Google uses it too.
Starter lawp.json for wtr-lab.com
Made from what Actuent already knows. Edit it, then publish it at https://wtr-lab.com/.well-known/lawp.json. Check it with the LAWP Checker, or edit it in the LAWP Generator.
{
  "lawp_version": "0.3",
  "domain": "wtr-lab.com",
  "name": "WTR-LAB",
  "language": "en",
  "pages": {
    "/": {
      "title": "WTR-LAB",
      "content": "Read English MTL (Machine Translation) Novels on WTR-LAB.com. All light novels here are translated from raw. Sign up to save your reading progress."
    },
    "/en/about-us": {
      "title": "About Us - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard About Us WTR-Lab is a RAW Novels translator site using automatic Machine Translation (MTL), so we can translate the novels faster than human translation. The reason for making this site is because there are only a few manual translator and it is a bit slow "
    },
    "/en/contact-us": {
      "title": "Contact Us - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard Contact Us Have a suggestion, found a bug, or need help? Reach out to us through any of the following channels: Report on Discord or ask to community → Join Server Email Support admin@wtr-lab.com WTR-LAB Read translated novels and track your reading progres"
    },
    "/en/novel/222/the-demons-menu": {
      "title": "Read The Demon’s Menu RAW English Translation - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard The Demon’s Menu Status Completed Views 70.2K Chapters 1035 Rating ★ 3.4 ( 7 ) Readers 245 Chars 2.88M Start Reading 0 Male System Transmigration Game Elements action adventure fantasy mystery supernatural AI-Unlock Progress 1035 / 1035 All chapters unlocke"
    },
    "/en/novel/2669/second-world-book": {
      "title": "Read Second World Book RAW English Translation - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard Second World Book Status Completed Views 73.8K Chapters 2383 Rating ★ 2.3 ( 4 ) Readers 357 Chars 3.74M Start Reading 0 Male fan-fiction fantasy harem xuanhuan AI-Unlock Progress 2383 / 2383 All chapters unlocked About Table of Contents Reviews Community No"
    },
    "/en/novel/3574/book-of-technology": {
      "title": "Read Book of Technology RAW English Translation - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard Book of Technology Status Completed Views 30.0K Chapters 507 Rating ★ 1.8 ( 5 ) Readers 197 Chars 962K Start Reading 0 Male System Game Elements adventure sci-fi AI-Unlock Progress 507 / 507 All chapters unlocked About Table of Contents Reviews Community No"
    },
    "/en/novel/1396/i-have-48-hours-a-day": {
      "title": "Read I Have 48 Hours a Day RAW English Translation - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard I Have 48 Hours a Day Status Completed Views 136K Chapters 1468 Rating ★ 4.2 ( 27 ) Readers 642 Chars 2.74M Start Reading 50 Male Leadership Game Elements action adventure fantasy game historical martial-arts mystery psychological sci-fi seinen slice-of-lif"
    },
    "/en/novel/103/god-level-store-manager": {
      "title": "Read God-level Store Manager RAW English Translation - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard God-level Store Manager Status Completed Views 1.43M Chapters 2839 Rating ★ 2.8 ( 34 ) Readers 1492 Chars 4.25M Start Reading 2 Male Cultivation System Transmigration Game Elements action adventure fantasy slice-of-life AI-Unlock Progress 2839 / 2839 All ch"
    },
    "/en/novel/2923/galaxy-returns-to-be-a-dad": {
      "title": "Read Galaxy Returns To Be a Dad RAW English Translation - WTR-LAB",
      "content": "WTR-LAB Library Novels Ranking Leaderboard Galaxy Returns To Be a Dad Status Completed Views 33.2K Chapters 1302 Rating ★ 1.0 ( 2 ) Readers 87 Chars 1.59M Start Reading 0 adventure fantasy romance AI-Unlock Progress 1302 / 1302 All chapters unlocked About Table of Contents Reviews Community Novel Su"
    }
  },
  "actions": [
    {
      "id": "contact",
      "name": "Contact",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "contact",
        "get in touch",
        "email",
        "message",
        "support"
      ],
      "description": "Get in touch with the site owner"
    }
  ]
}
Starter schema.org snippet
Replace the example values, then paste into your homepage's <head>.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "WTR-LAB",
  "url": "https://wtr-lab.com",
  "telephone": "+00 0000 0000",
  "priceRange": "€€",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Street 1",
    "postalCode": "0000",
    "addressLocality": "City",
    "addressCountry": "DK"
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday"
      ],
      "opens": "09:00",
      "closes": "17:00"
    }
  ]
}
</script>

What AI agents can do here

Contact
Get in touch with the site owner
contactget in touchemailmessagesupport

Pages

WTR-LAB /
Read English MTL (Machine Translation) Novels on WTR-LAB.com. All light novels here are translated from raw. Sign up to save your reading progress.
About Us - WTR-LAB /en/about-us
WTR-LAB Library Novels Ranking Leaderboard About Us WTR-Lab is a RAW Novels translator site using automatic Machine Translation (MTL), so we can translate the novels faster than human translation. The reason for making this site is because there are only a few manual translator a
Contact Us - WTR-LAB /en/contact-us
WTR-LAB Library Novels Ranking Leaderboard Contact Us Have a suggestion, found a bug, or need help? Reach out to us through any of the following channels: Report on Discord or ask to community → Join Server Email Support admin@wtr-lab.com WTR-LAB Read translated novels and track
Read The Demon’s Menu RAW English Translation - WTR-LAB /en/novel/222/the-demons-menu
WTR-LAB Library Novels Ranking Leaderboard The Demon’s Menu Status Completed Views 70.2K Chapters 1035 Rating ★ 3.4 ( 7 ) Readers 245 Chars 2.88M Start Reading 0 Male System Transmigration Game Elements action adventure fantasy mystery supernatural AI-Unlock Progress 1035 / 1035
Read Second World Book RAW English Translation - WTR-LAB /en/novel/2669/second-world-book
WTR-LAB Library Novels Ranking Leaderboard Second World Book Status Completed Views 73.8K Chapters 2383 Rating ★ 2.3 ( 4 ) Readers 357 Chars 3.74M Start Reading 0 Male fan-fiction fantasy harem xuanhuan AI-Unlock Progress 2383 / 2383 All chapters unlocked About Table of Contents
Read Book of Technology RAW English Translation - WTR-LAB /en/novel/3574/book-of-technology
WTR-LAB Library Novels Ranking Leaderboard Book of Technology Status Completed Views 30.0K Chapters 507 Rating ★ 1.8 ( 5 ) Readers 197 Chars 962K Start Reading 0 Male System Game Elements adventure sci-fi AI-Unlock Progress 507 / 507 All chapters unlocked About Table of Contents
Read I Have 48 Hours a Day RAW English Translation - WTR-LAB /en/novel/1396/i-have-48-hours-a-day
WTR-LAB Library Novels Ranking Leaderboard I Have 48 Hours a Day Status Completed Views 136K Chapters 1468 Rating ★ 4.2 ( 27 ) Readers 642 Chars 2.74M Start Reading 50 Male Leadership Game Elements action adventure fantasy game historical martial-arts mystery psychological sci-fi
Read God-level Store Manager RAW English Translation - WTR-LAB /en/novel/103/god-level-store-manager
WTR-LAB Library Novels Ranking Leaderboard God-level Store Manager Status Completed Views 1.43M Chapters 2839 Rating ★ 2.8 ( 34 ) Readers 1492 Chars 4.25M Start Reading 2 Male Cultivation System Transmigration Game Elements action adventure fantasy slice-of-life AI-Unlock Progres
Read Galaxy Returns To Be a Dad RAW English Translation - WTR-LAB /en/novel/2923/galaxy-returns-to-be-a-dad
WTR-LAB Library Novels Ranking Leaderboard Galaxy Returns To Be a Dad Status Completed Views 33.2K Chapters 1302 Rating ★ 1.0 ( 2 ) Readers 87 Chars 1.59M Start Reading 0 adventure fantasy romance AI-Unlock Progress 1302 / 1302 All chapters unlocked About Table of Contents Review

For AI agents

Get this site as structured JSON:
GET https://api.actuent.ai/api/search?q=wtr-lab.com
Or connect Actuent to ChatGPT or Claude: https://agents.actuent.ai/api/mcp
Last updated 26 Sep 2026

Is this your site?

Claim wtr-lab.com to edit what AI agents see, make your actions executable, and show your score:
Claim this site →   WordPress, Cloudflare & Shopify →
Show your score: <script src="https://api.actuent.ai/badge.js" data-domain="wtr-lab.com" async></script> or the image https://api.actuent.ai/badge.svg?domain=wtr-lab.com&style=card

Actuent is a search engine for AI agents, made by localilabs. Data is generated automatically from public web content and may be incomplete.