Dictionary Server
@meowrain
About Dictionary Server
一个可以使用cambridge dictionary查询单词的mcp服务器
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"dictionary-server": {
"command": "npx",
"args": [
"-y",
"mcp-server-dictionary"
],
"disabled": false
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Dictionary Server?
Dictionary Server is a Model Context Protocol (MCP) server that retrieves word meanings, pronunciation, definitions, and example sentences from the Cambridge Dictionary. It is designed for developers building AI assistants (like Claude) or any MCP‑compatible tool that needs dictionary lookup capabilities.
How to use Dictionary Server?
Integrate the server by adding the following configuration to your MCP settings:
"mcp-server-cambridge-dict": {
"command": "npx",
"args": ["-y", "mcp-server-dictionary"],
"disabled": false
}
After configuration, run the server with npm run start:mcp. You can also test it using the MCP Inspector via npm run inspector.
Key features of Dictionary Server
- Seamless integration with Claude and other AI assistants via MCP.
- Robust
lookup_wordtool for querying words. - Retrieves meaning, pronunciation, and example sentences from Cambridge Dictionary.
- Returns structured JSON responses adhering to MCP specification.
- Error responses include
isError: truefor transparent handling.
Use cases of Dictionary Server
- Look up word definitions on‑the‑fly within an AI assistant conversation.
- Build dictionary functionality into MCP‑based chat tools or agents.
- Automate vocabulary research by querying pronunciation and usage examples.
FAQ from Dictionary Server
What data does Dictionary Server fetch?
It fetches word meaning, pronunciation, definition, and example sentences from the Cambridge Dictionary.
How do I integrate Dictionary Server with my application?
Add the provided npx command configuration to your MCP client’s settings (e.g., mcp-servers-config.json). Then the lookup_word tool will be available.
Can I test the server without a full MCP client?
Yes. Run npm run inspector to start the MCP Inspector, which allows you to test the lookup_word tool interactively.
What is the format of a successful response?
A successful query returns a JSON object with a content array containing a text element that holds the word query result in JSON format.
What happens if the word is not found or an error occurs?
The server returns an error response: a JSON object with a content array containing an error message text, and an isError: true flag.
Frequently asked questions
What data does Dictionary Server fetch?
It fetches word meaning, pronunciation, definition, and example sentences from the Cambridge Dictionary.
How do I integrate Dictionary Server with my application?
Add the provided npx command configuration to your MCP client’s settings (e.g., `mcp-servers-config.json`). Then the `lookup_word` tool will be available.
Can I test the server without a full MCP client?
Yes. Run `npm run inspector` to start the MCP Inspector, which allows you to test the `lookup_word` tool interactively.
What is the format of a successful response?
A successful query returns a JSON object with a `content` array containing a text element that holds the word query result in JSON format.
What happens if the word is not found or an error occurs?
The server returns an error response: a JSON object with a `content` array containing an error message text, and an `isError: true` flag.
Basic information
More Other MCP servers
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
ghidraMCP
LaurieWiredMCP Server for Ghidra
Inbox Zero AI
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.
Awesome Mlops
visengerA curated list of references for MLOps
Comments