Dictionary Lookup MCP Server
Dictionary Lookup MCP Server
Минимальный сервер Model Context Protocol,
созданный с помощью официального Python SDK. Он предоставляет один инструмент, define, который ищет
определение английского слова с помощью бесплатного
dictionaryapi.dev API.
Этот проект был создан в качестве учебного упражнения, чтобы понять, как устроены MCP-серверы, как они общаются с клиентами и как развернуть такой сервер публично.
Что он делает
Предоставляет один инструмент:
define(word: str) -> strПо заданному слову возвращает часть речи и определение
Не требует API-ключа или аутентификации
Related MCP server: Hello World MCP FastAPI Endpoint
Требования
Python 3.10+
uv (рекомендуется) или pip
Настройка (локально)
# 1. Clone this repo
git clone <your-repo-url>
cd my-mcp-server
# 2. Install dependencies
uv syncЗапуск локально
Вариант A — MCP Inspector (инструмент визуального тестирования, самый простой для новичков):
uv run mcp dev server.pyОткроется браузерный инспектор, где вы можете напрямую вызывать инструмент define
и видеть запрос/ответ без необходимости в полноценном AI-клиенте.
Вариант B — Подключение к Claude Desktop:
Добавьте это в файл конфигурации Claude Desktop
(claude_desktop_config.json):
{
"mcpServers": {
"dictionary-lookup": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/my-mcp-server",
"run",
"server.py"
]
}
}
}Перезапустите Claude Desktop, затем спросите что-то вроде: "Используйте словарный инструмент, чтобы вызвать define для 'ephemeral'."
Пример использования
Ввод: define("ephemeral")
Вывод: ephemeral (adjective): lasting for a very short time.
Развертывание
Этот сервер опубликован на Smithery: <link once deployed>
Чтобы развернуть собственную копию:
Запушьте этот репозиторий на GitHub.
Убедитесь, что
server.pyподдерживает транспортstreamable-httpдля удаленного хостинга.Разместите его (например, Render/Railway) или используйте процесс публикации Smithery.
На Smithery выберите «Publish via URL» и направьте его на endpoint вашего размещенного сервера.
Зачем этот проект
Создан для изучения основ MCP: как клиент обнаруживает инструменты сервера, как выполняется и обрабатывается вызов инструмента и как работающий сервер публикуется через маркетплейс вроде Smithery.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA basic Model Context Protocol server implementation that demonstrates core functionality including tools and resources for AI chat applications.
- FlicenseNot gradedqualityDmaintenanceA minimal Model Context Protocol server built with FastAPI that provides a basic "Hello World" resource and tool. Serves as a starting point for building and validating MCP client integrations with richer resources and tools.
- AlicenseNot gradedqualityDmaintenanceA minimal Model Context Protocol server that facilitates network-based client connections using Streamable HTTP transport. It provides a greeting tool and is optimized for consistent deployment across local environments, Docker, and Kubernetes.MIT
- FlicenseBqualityNot gradedmaintenanceA minimal Model Context Protocol server that provides a simple tool for adding two integers. It serves as a demonstration of the official Python MCP SDK and is designed for local execution via stdio.1
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP (Model Context Protocol) server for Appwrite
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MaryamSarfraz77/dictionary-lookup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server