MeowRain/mcp-server-cambridge-dict
Built by Metorial, the integration platform for agentic AI.
MeowRain/mcp-server-cambridge-dict
Server Summary
Retrieve word meanings
Provide definitions
Access example sentences
Integrate with AI assistants
A dictionary server supporting the Model Context Protocol (MCP).
Retrieves word meanings from the Cambridge Dictionary.
To integrate the MCP server into your command line, add the following configuration:
"mcp-server-cambridge-dict": {
"command": "npx",
"args": ["-y", "mcp-server-dictionary"],
"disabled": false
}
Install the required dependencies:
npm install
Build the server for production:
npm run build
Enable auto-rebuild during development:
npm run watch
Start the MCP server with the following command:
npm run start:mcp
To test the server, use the MCP Inspector:
npm run inspector
This server adheres to the MCP response specification.
A successful word query returns the following format:
{
"content": [
{
"type": "text",
"text": "Word query result (in JSON format)"
}
]
}
In case of an error, the response format is:
{
"content": [
{
"type": "text",
"text": "Error message"
}
],
"isError": true
}
lookup_word
Fetches the pronunciation, definition, and example sentences for a word.
word
(string): The word to query.Detailed information about the word, including pronunciation, definition, and example sentences.