Dictionary Lookup MCP Server
Dictionary Lookup MCP Server
Ein minimaler Model Context Protocol-Server, erstellt mit dem offiziellen Python SDK. Er stellt ein Tool namens define bereit, das die Definition eines englischen Wortes über die kostenlose dictionaryapi.dev-API nachschlägt.
Dieses Projekt wurde als Lernübung erstellt, um zu verstehen, wie MCP-Server aufgebaut sind, wie sie mit Clients kommunizieren und wie man einen öffentlich bereitstellt.
Was es tut
Stellt ein einzelnes Tool bereit:
define(word: str) -> strGibt für ein Wort die Wortart und die Definition zurück
Kein API-Schlüssel oder Authentifizierung erforderlich
Related MCP server: Hello World MCP FastAPI Endpoint
Voraussetzungen
Python 3.10+
uv (empfohlen) oder pip
Einrichtung (lokal)
# 1. Clone this repo
git clone <your-repo-url>
cd my-mcp-server
# 2. Install dependencies
uv syncLokal ausführen
Option A – MCP Inspector (visuelles Testwerkzeug, am einfachsten für Anfänger):
uv run mcp dev server.pyDies öffnet einen browserbasierten Inspector, in dem Sie das define-Tool direkt aufrufen und die Anfrage/Antwort sehen können, ohne einen vollständigen AI-Client zu benötigen.
Option B – Mit Claude Desktop verbinden:
Fügen Sie dies zu Ihrer Claude-Desktop-Konfigurationsdatei (claude_desktop_config.json) hinzu:
{
"mcpServers": {
"dictionary-lookup": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/my-mcp-server",
"run",
"server.py"
]
}
}
}Starten Sie Claude Desktop neu und fragen Sie dann etwa: „Verwenden Sie das Wörterbuch-Tool, um ‚ephemeral‘ zu definieren."
Verwendungsbeispiel
Eingabe: define("ephemeral")
Ausgabe: ephemeral (adjective): lasting for a very short time.
Bereitstellung
Dieser Server ist auf Smithery veröffentlicht: <link once deployed>
Um eine eigene Kopie bereitzustellen:
Übertragen Sie dieses Repository auf GitHub.
Stellen Sie sicher, dass
server.pydenstreamable-http-Transport für Remote-Hosting unterstützt.Hosten Sie es (z. B. Render/Railway) oder nutzen Sie den Veröffentlichungsprozess von Smithery.
Wählen Sie auf Smithery „Publish via URL“ und zeigen Sie auf den Endpunkt Ihres gehosteten Servers.
Warum dieses Projekt
Erstellt, um die Grundlagen von MCP zu lernen: wie ein Client die Tools eines Servers entdeckt, wie ein Tool-Aufruf durchgeführt und beantwortet wird und wie ein funktionierender Server über einen Marktplatz wie Smithery öffentlich geteilt wird.
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