MCP Integration Guide

Use the Papiamentu Spellchecker with AI assistants via Model Context Protocol

https://spellcheck.boneiru.online/mcp

What is MCP?

The Model Context Protocol (MCP) allows AI assistants like Claude to use external tools. This spellchecker exposes all its functionality as MCP tools.

Available Tools

check_text
Full orthography check with spelling, accents, suggestions, quality score, syllables, and more.
get_syllables
Divide words into syllables following official Papiamentu rules.
number_to_papiamentu
Convert numbers to Papiamentu words (e.g., 42 → "kuarenta i dos").
lookup_word
Check if a word exists in the dictionary.
search_words
Search for words matching a pattern.
get_accent_variants
Get accent variants for words (e.g., "no" → ["nò", "nó"]).

Example: List Tools

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list"
}

Example: Call a Tool

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "check_text",
    "arguments": {
      "text": "Mi ta bai skol awe.",
      "max_suggestions": 5
    }
  }
}

MCP Configuration

Add to your ~/.mcp.json:

{
  "mcpServers": {
    "papiamentu": {
      "type": "http",
      "url": "https://spellcheck.boneiru.online/mcp"
    }
  }
}