- Home
- MCP servers
- prompt-new
prompt-new
- javascript
1
GitHub Stars
javascript
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": {
"seungwonme-prompt-new-mcp": {
"command": "npx",
"args": [
"-y",
"prompt-new-mcp"
]
}
}
}You have a lightweight MCP server that saves prompts with timestamps and lets you list them later. It runs locally and can be integrated with MCP clients to store and retrieve your prompts efficiently, keeping a tidy record of your questions and ideas.
How to use
You interact with the server through an MCP client. Start the server locally, then connect your client to the MCP endpoint to save prompts and retrieve your saved prompts. Use the built-in tools to perform common tasks such as saving a new prompt and listing existing prompts.
Save a prompt with a timestamp and a given name so you can reference it later. Use the save tool to provide a name and the content of your prompt. The server stores each entry in a file named with the timestamp and a sanitized version of the prompt name.
List saved prompts to quickly browse what you have stored. You can limit the number of results to avoid overwhelming output; the default is twenty prompts if you don’t specify a limit.
How to install
Prerequisites: ensure you have Node.js 18 or higher installed on your machine.
Run the MCP server directly with an inline command, no prior installation required.
npx prompt-new-mcp
Configuration and usage with Claude Desktop
If you use Claude Desktop, you can add the MCP server to your client configuration. The following example shows how to configure the server for macOS and Windows.
# macOS
{
"mcpServers": {
"prompt-new-mcp": {
"command": "npx",
"args": ["-y", "prompt-new-mcp"]
}
}
}
# Windows
{
"mcpServers": {
"prompt-new-mcp": {
"command": "npx",
"args": ["-y", "prompt-new-mcp"]
}
}
}
Available tools
save
Saves a prompt with a timestamp to the prompts directory. Parameters: name (string) for the file name and content (string) for the prompt text.
list
Lists saved prompts from the prompts directory. Parameter: limit (number, optional) to cap the number of results (default 20).