- Home
- MCP servers
- MCP Client and Server
MCP Client and Server
- other
2
GitHub Stars
other
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"non-dirty-mcp-client-and-server": {
"command": "uv",
"args": [
"--directory",
"/Users/yourname/path/to/your/mcp/server/directory",
"run",
"mcp-client-and-server"
]
}
}
}You run an MCP server that exposes a simple note storage service with a note:// URI scheme, plus a prompt to summarize all stored notes. This setup lets you add notes, view and access them, and generate consolidated summaries on demand, all coordinated through the MCP runtime with client and server components.
How to use
To use this MCP server with a client, you run the server in stdio mode and then connect your client to it. You have two ready-made startup options: a development setup that runs the server from a local directory, and a published setup that runs the server as a standalone process.
How to install
Prerequisites: ensure you have the MCP runtime tooling (uv and uvx) installed on your system. You will also need a place to store configuration for your MCP servers.
Step 1. Create your MCP server configuration for development use.
{
"mcpServers": {
"mcp_client_server": {
"command": "uv",
"args": [
"--directory",
"/Users/yourname/path/to/your/mcp/server/directory",
"run",
"mcp-client-and-server"
]
}
}
}
How to install
Step 2. Or use the published configuration to run the server as a standalone process.
{
"mcpServers": {
"mcp_client_server": {
"command": "uvx",
"args": [
"mcp-client-and-server"
]
}
}
}
Available tools
add-note
Adds a new note to the server, requiring a name and content as string arguments. Updates server state and notifies clients of resource changes.