loading…
Search for a command to run...
loading…
Slugify AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Slugify AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Slugify Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
slugify |
Convert text to a URL-friendly slug. Handles Unicode, transliteration, stop word |
deslugify |
Convert a slug back to human-readable text. |
batch_slugify |
Batch slugify multiple texts (pipe-separated). E.g. 'Hello World |
generate_seo_slug |
Generate an SEO-optimized slug from a title. Removes stop words, adds optional c |
pip install meok-slugify-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"slugify-ai": {
"command": "python",
"args": ["-m", "meok_slugify_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 4 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"slugify-ai-mcp": {
"command": "npx",
"args": []
}
}
}