Skip to main content
Glama
README.md
# lingbot-mcp

A small Model Context Protocol (MCP) server for discovering Lingbot creation tools, public links, and model availability.

[Lingbot Video](https://lingbot.pro/) is an independent AI creation and discovery platform. It provides browser-based image generation today and is preparing additional image and video generation workflows. This server exposes its public product information through three simple MCP tools.

## Tools

| Tool | Description |
| --- | --- |
| `get_lingbot_info` | Returns the platform description and official links. |
| `list_lingbot_models` | Lists available or upcoming image and video models. |
| `get_lingbot_creation_link` | Returns the creation URL for an image or video workflow. |

Model availability is reported explicitly. Planned models are returned as `coming_soon`, not as currently available.

## Quick start

Requirements: Node.js 20 or newer.

```bash
git clone https://github.com/annwo2025-a11y/lingbot-mcp.git
cd lingbot-mcp
npm install
npm start
```

## MCP configuration

Add a local checkout to any MCP-compatible client:

```json
{
  "mcpServers": {
    "lingbot": {
      "command": "node",
      "args": ["/absolute/path/to/lingbot-mcp/src/index.js"]
    }
  }
}
```

## Development

```bash
npm install
npm test
```

## About Lingbot

Use [Lingbot](https://lingbot.pro/) to generate AI images, explore practical model guides, and follow upcoming AI video creation tools.

Lingbot is an independent platform and is not affiliated with or endorsed by Robbyant or Ant Group. Model names and trademarks belong to their respective owners.

## License

MIT

TDQS

B3.2/5.0

Scored across 3 tools

Disambiguation5/5

Each tool targets a clearly distinct resource: platform info, model list, and creation link. There is no meaningful overlap between the three purposes.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the same lingbot_ namespace prefix: get_lingbot_info, list_lingbot_models, get_lingbot_creation_link.

Tool Count3/5

Three tools is thin for a platform integration server, though it may be intentional for a read-only info surface. It sits at the borderline of under-scoped.

Completeness2/5

The surface is entirely read-only and covers only info, model listing, and link retrieval. There is no ability to actually invoke a creation workflow, check status, or retrieve results, leaving significant gaps for real agent use.

Maintenance

ActivitySlowing
ResponsivenessNo issues