mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2025-12-23 00:34:27 +01:00
Example server to expose a fetch tool and a fetch prompt
This commit is contained in:
42
examples/servers/simple-prompt/README.md
Normal file
42
examples/servers/simple-prompt/README.md
Normal file
@@ -0,0 +1,42 @@
|
||||
# MCP Simple Prompt
|
||||
|
||||
A simple MCP server that exposes a customizable prompt template with optional context and topic parameters.
|
||||
|
||||
## Usage
|
||||
|
||||
Start the server using either stdio (default) or SSE transport:
|
||||
|
||||
```bash
|
||||
# Using stdio transport (default)
|
||||
mcp-simple-prompt
|
||||
|
||||
# Using SSE transport on custom port
|
||||
mcp-simple-prompt --transport sse --port 8000
|
||||
```
|
||||
|
||||
The server exposes a prompt named "simple" that accepts two optional arguments:
|
||||
|
||||
- `context`: Additional context to consider
|
||||
- `topic`: Specific topic to focus on
|
||||
|
||||
## Example
|
||||
|
||||
Using the MCP client, you can retrieve the prompt like this:
|
||||
|
||||
```python
|
||||
from mcp.client import ClientSession
|
||||
|
||||
async with ClientSession() as session:
|
||||
await session.initialize()
|
||||
|
||||
# List available prompts
|
||||
prompts = await session.list_prompts()
|
||||
print(prompts)
|
||||
|
||||
# Get the prompt with arguments
|
||||
prompt = await session.get_prompt("simple", {
|
||||
"context": "User is a software developer",
|
||||
"topic": "Python async programming"
|
||||
})
|
||||
print(prompt)
|
||||
```
|
||||
Reference in New Issue
Block a user