{"id":26570911,"url":"https://github.com/0xshellming/mcp-summarizer","last_synced_at":"2025-03-22T22:19:46.044Z","repository":{"id":279948881,"uuid":"940472466","full_name":"0xshellming/mcp-summarizer","owner":"0xshellming","description":"MCP Server for AI Summarization","archived":false,"fork":false,"pushed_at":"2025-02-28T12:10:58.000Z","size":333,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T17:55:34.174Z","etag":null,"topics":["ai","ai-summarizer","book","bookreader","deepseek-r1","ebook","gemini","summarizer"],"latest_commit_sha":null,"homepage":"https://3min.top/en","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xshellming.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-28T08:34:32.000Z","updated_at":"2025-02-28T11:50:33.000Z","dependencies_parsed_at":"2025-02-28T17:55:40.744Z","dependency_job_id":"aceaaf93-efb6-4249-9df1-c40afec35a79","html_url":"https://github.com/0xshellming/mcp-summarizer","commit_stats":null,"previous_names":["0xshellming/mcp-summarizer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xshellming%2Fmcp-summarizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xshellming%2Fmcp-summarizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xshellming%2Fmcp-summarizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xshellming%2Fmcp-summarizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xshellming","download_url":"https://codeload.github.com/0xshellming/mcp-summarizer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245026683,"owners_count":20549186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","ai-summarizer","book","bookreader","deepseek-r1","ebook","gemini","summarizer"],"created_at":"2025-03-22T22:19:21.763Z","updated_at":"2025-03-22T22:19:46.029Z","avatar_url":"https://github.com/0xshellming.png","language":"JavaScript","readme":"# MCP Content Summarizer Server\n\nA Model Context Protocol (MCP) server that provides intelligent summarization capabilities for various types of content using Google's Gemini 1.5 Pro model. This server can help you generate concise summaries while maintaining key information from different content formats.\n\n\u003ca href=\"https://3min.top\"\u003e\u003cimg width=\"380\" height=\"200\" src=\"/public/imgs/section1_en.jpg\" alt=\"MCP Content Summarizer Server\" /\u003e\u003c/a\u003e\n\n## Powered by 3MinTop\n\nThe summarization service is powered by [3MinTop](https://3min.top), an AI-powered reading tool that helps you understand a chapter's content in just three minutes. 3MinTop transforms complex content into clear summaries, making learning efficient and helping build lasting reading habits.\n\n## Features\n\n- Universal content summarization using Google's Gemini 1.5 Pro model\n- Support for multiple content types:\n  - Plain text\n  - Web pages\n  - PDF documents\n  - EPUB books\n  - HTML content\n- Customizable summary length\n- Multi-language support\n- Smart context preservation\n- Dynamic greeting resource for testing\n\n## Getting Started\n\n1. Clone this repository\n2. Install dependencies:\n   ```\n   pnpm install\n   ```\n\n3. Build the project:\n   ```\n   pnpm run build\n   ```\n\n4. Start the server:\n   ```\n   pnpm start\n   ```\n\n## Development\n\n- Use `pnpm run dev` to start the TypeScript compiler in watch mode\n- Modify `src/index.ts` to customize server behavior or add new tools\n\n## Usage with Desktop App\n\nTo integrate this server with a desktop app, add the following to your app's server configuration:\n\n```js\n{\n  \"mcpServers\": {\n    \"content-summarizer\": {\n      \"command\": \"node\",\n      \"args\": [\n        \"{ABSOLUTE PATH TO FILE HERE}/dist/index.js\"\n      ]\n    }\n  }\n}\n```\n\n## Available Tools\n\n### summarize\n\nSummarizes content from various sources using the following parameters:\n- `content` (string | object): The input content to summarize. Can be:\n  - Text string\n  - URL for web pages\n  - Base64 encoded PDF\n  - EPUB file content\n- `type` (string): Content type (\"text\", \"url\", \"pdf\", \"epub\")\n- `maxLength` (number, optional): Maximum length of the summary in characters (default: 200)\n- `language` (string, optional): Target language for the summary (default: \"en\")\n- `focus` (string, optional): Specific aspect to focus on in the summary\n- `style` (string, optional): Summary style (\"concise\", \"detailed\", \"bullet-points\")\n\nExample usage:\n\n```typescript\n// Summarize a webpage\nconst result = await server.invoke(\"summarize\", {\n  content: \"https://example.com/article\",\n  type: \"url\",\n  maxLength: 300,\n  style: \"bullet-points\"\n});\n\n// Summarize a PDF document\nconst result = await server.invoke(\"summarize\", {\n  content: pdfBase64Content,\n  type: \"pdf\",\n  language: \"zh\",\n  style: \"detailed\"\n});\n```\n\n### greeting\n\nA dynamic resource that demonstrates basic MCP resource functionality:\n- URI format: `greeting://{name}`\n- Returns a greeting message with the provided name\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. ","funding_links":[],"categories":["Data \u0026 Analytics","Table of Contents","Content Extraction \u0026 Summarization Mcp Servers","📚 Projects (1974 total)","🤖 AI/ML","MCP 服务器精选列表","Legend","پیاده‌سازی‌های سرور","Other Tools and Integrations","Content Creation","Knowledge \u0026 Memory","Uncategorized"],"sub_categories":["AI/ML Platforms","AI Services","MCP Servers","🧠 知识、记忆与 RAG","🧠 \u003ca name=\"knowledge--memory\"\u003e\u003c/a\u003eKnowledge \u0026 Memory","🧠 \u003ca name=\"knowledge--memory\"\u003e\u003c/a\u003eدانش و حافظه","How to Submit","Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xshellming%2Fmcp-summarizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xshellming%2Fmcp-summarizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xshellming%2Fmcp-summarizer/lists"}