trackmcp
Back to directory
meowrain

mcp-server-cambridge-dict

View on GitHub

一个可以使用cambridge dictionary查询单词的mcp服务器

2 stars JavaScriptServers & Infrastructure Updated May 7, 2025

Documentation

MseeP.ai Security Assessment Badge

Dictionary Server

smithery badge

A dictionary server supporting the Model Context Protocol (MCP).

Retrieves word meanings from the Cambridge Dictionary.

Adding MCP to Command Line

To integrate the MCP server into your command line, add the following configuration:

json
"mcp-server-cambridge-dict": {
  "command": "npx",
  "args": ["-y", "mcp-server-dictionary"],
  "disabled": false
}

Features

  • Seamless integration with Claude and other AI assistants via the MCP protocol.
  • Robust dictionary query tools.
  • Retrieves word meanings from the Cambridge Dictionary.

Development

Install Dependencies

Install the required dependencies:

bash
npm install

Build the Server

Build the server for production:

bash
npm run build

Development Mode

Enable auto-rebuild during development:

bash
npm run watch

Running the Server

Start the MCP server with the following command:

bash
npm run start:mcp

Testing with MCP Inspector

To test the server, use the MCP Inspector:

bash
npm run inspector

MCP Response Specification

This server adheres to the MCP response specification.

Tool Response

A successful word query returns the following format:

json
{
  "content": [
    {
      "type": "text",
      "text": "Word query result (in JSON format)"
    }
  ]
}

Error Response

In case of an error, the response format is:

json
{
  "content": [
    {
      "type": "text",
      "text": "Error message"
    }
  ],
  "isError": true
}

API Documentation

`lookup_word`

Fetches the pronunciation, definition, and example sentences for a word.

Parameters

  • `word` (string): The word to query.

Returns

Detailed information about the word, including pronunciation, definition, and example sentences.

Frequently asked questions

What is mcp-server-cambridge-dict?

mcp-server-cambridge-dict is 一个可以使用cambridge dictionary查询单词的mcp服务器

How do I install mcp-server-cambridge-dict?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is mcp-server-cambridge-dict open source?

Yes — it is hosted on GitHub at https://github.com/meowrain/mcp-server-cambridge-dict and has 2 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP