mcp-tavily-server
If you are the rightful owner of mcp-tavily-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Model Context Protocol server
The Tavily-server is a TypeScript-based Model Context Protocol (MCP) server that implements a simple notes system. It demonstrates core MCP concepts by providing resources that represent text notes with URIs and metadata, tools for creating new notes, and prompts for generating summaries of notes. This server is designed to facilitate the management and summarization of text notes, making it a useful tool for applications that require structured note-taking and summarization capabilities.
Features
- Resources: List and access notes via `note://` URIs. Each note has a title, content, and metadata, with a plain text mime type for simple content access.
- Tools: `create_note` - Create new text notes. Takes title and content as required parameters and stores the note in server state.
- Prompts: `summarize_notes` - Generate a summary of all stored notes. Includes all note contents as embedded resources and returns a structured prompt for LLM summarization.
Tools
create_note
Tool for creating new text notes with title and content.