edgardamasceno-dev_ldoce-mcp-server
Ldoce MCP Server is a Node.js and TypeScript-based server that extracts data from the Longman Dictionary and returns it in a standardized JSON format for AI agents.
The Ldoce MCP Server connects to the Longman Dictionary's online page for a specified word, extracts relevant information such as introduction, related topics, verb and noun entries, corpus examples, and word origin, and returns this data in a structured JSON format. The server adheres to the Model Context Protocol (MCP) standards and utilizes Axios for HTTP requests and Cheerio for HTML parsing. This setup allows for seamless integration with AI agents, providing them with detailed lexical data.
Features
- Extracts detailed information from the Longman Dictionary, including introductions, related topics, and word entries.
- Provides structured JSON output for easy consumption by AI agents.
- Utilizes Axios and Cheerio for efficient HTTP requests and HTML parsing.
- Integrates with MCP SDK to expose a tool for MCP clients like Claude Desktop.
Usage with Different Platforms
Node.js
javascript
const axios = require('axios');
const cheerio = require('cheerio');
async function fetchWordData(word) {
const url = `https://www.ldoceonline.com/dictionary/${word}`;
const response = await axios.get(url);
const $ = cheerio.load(response.data);
// Extract data logic here
}
fetchWordData('example');
Related MCP Servers
View all knowledge_and_memory servers →git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Knowledge Graph Memory Server
by modelcontextprotocol
A basic implementation of persistent memory using a local knowledge graph, allowing Claude to remember information about the user across chats.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.
rust-docs-mcp-server
by Govcraft
The Rust Docs MCP Server provides an up-to-date knowledge source for specific Rust crates, enhancing the accuracy of AI coding assistants by allowing them to query current documentation.
mindmap-mcp-server
by YuChenSSR
A Model Context Protocol (MCP) server for converting Markdown content to interactive mindmaps.
algorand-mcp
by GoPlausible
This is a Model Context Protocol (MCP) implementation for Algorand blockchain interactions, providing a server package for blockchain interactions and a client package for wallet management and transaction signing.
mcp-obsidian
by MarkusPfundstein
MCP server to interact with Obsidian via the Local REST API community plugin.