MCP Servers Collection
@iamkaia
About MCP Servers Collection
No overview available yet
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"line-bot": {
"command": "node",
"args": [
"to\\the\\path\\line-bot-mcp-server\\dist\\index.js"
],
"env": {
"CHANNEL_ACCESS_TOKEN": "xxx",
"DESTINATION_USER_ID": "xxx"
}
},
"email_mcp": {
"command": "to\\the\\path\\mcp-proxy.exe",
"args": [
"http://localhost:9000/mcp"
]
},
"fetch": {
"command": "python",
"args": [
"-m",
"mcp_server_fetch"
]
},
"word-document-server": {
"command": "to\\the\\path\\python.exe",
"args": [
"to\\the\\path\\word_server.py"
],
"env": {
"PYTHONPATH": "to\\the\\path\\Office-Word-MCP-Server"
}
},
"filesystem": {
"command": "npx",
"args": [
"--yes",
"@modelcontextprotocol/server-filesystem",
"/Users/username/Desktop",
"/path/to/other/allowed/dir"
]
}
}
}Tools
No tools detected
Fetch the live tool list by running this server in a temporary sandbox using the button above.
Overview
What is MCP Servers Collection?
A repository that hosts five Model Context Protocol (MCP) servers you can mount into Claude Desktop: line-bot, email_mcp, fetch, word-document-service, and filesystem. It is intended for users who want to extend Claude's capabilities with messaging, email, web fetching, document editing, and local file operations.
How to use MCP Servers Collection?
Clone the repository and follow the Quick Start instructions for each server (Python venv, npm install, or npx). Then edit your claude_desktop_config.json to spawn the desired MCP tools. After saving, restart Claude Desktop to see the tools in the 🔨 Tools menu.
Key features of MCP Servers Collection
- Line‑bot: send text and flex messages to Line chats.
- email_mcp: send emails and list recent ones via SMTP/IMAP.
- fetch: retrieve a web page’s title, headings, and snippet.
- word-document-service: create, edit, and format DOCX files.
- filesystem: read, write, list, and search files inside allowed directories.
Use cases of MCP Servers Collection
- Automate Line notifications from Claude conversations.
- Send or review emails without switching to a mail client.
- Fetch and summarize web pages as part of a research task.
- Generate and edit Word documents programmatically.
- Browse, read, and modify local files within permitted folders.
FAQ from MCP Servers Collection
Which servers require environment variables?
line-bot needs CHANNEL_ACCESS_TOKEN and DESTINATION_USER_ID; email_mcp needs SMTP (SMTP_SERVER, SMTP_PORT, SMTP_USERNAME, SMTP_PASSWORD) and IMAP (IMAP_SERVER, IMAP_PORT, IMAP_USERNAME, IMAP_PASSWORD) credentials.
How do I configure Claude Desktop to use these servers?
Edit claude_desktop_config.json to add a "mcpServers" object with an entry for each server, specifying the command, arguments, and any required environment variables. The README provides a complete example.
What runtime or dependencies are needed?
line‑bot requires Node.js; email_mcp and word‑document‑service require Python and their requirements.txt packages; fetch requires Python with mcp-server-fetch; filesystem runs via npx and the Node‑based @modelcontextprotocol/server-filesystem.
What data can the filesystem server access?
It can only operate within the directories explicitly mounted in its arguments (e.g., "/Users/username/Desktop"). Other locations are blocked.
What transport do the servers use?
The configuration examples show stdio transport (command/args) for line‑bot, fetch, word‑document‑service, and filesystem, and HTTP transport (proxy to localhost) for email_mcp.
Frequently asked questions
Which servers require environment variables?
line-bot needs `CHANNEL_ACCESS_TOKEN` and `DESTINATION_USER_ID`; email_mcp needs SMTP (`SMTP_SERVER`, `SMTP_PORT`, `SMTP_USERNAME`, `SMTP_PASSWORD`) and IMAP (`IMAP_SERVER`, `IMAP_PORT`, `IMAP_USERNAME`, `IMAP_PASSWORD`) credentials.
How do I configure Claude Desktop to use these servers?
Edit `claude_desktop_config.json` to add a `"mcpServers"` object with an entry for each server, specifying the command, arguments, and any required environment variables. The README provides a complete example.
What runtime or dependencies are needed?
line‑bot requires Node.js; email_mcp and word‑document‑service require Python and their `requirements.txt` packages; fetch requires Python with `mcp-server-fetch`; filesystem runs via `npx` and the Node‑based `@modelcontextprotocol/server-filesystem`.
What data can the filesystem server access?
It can only operate within the directories explicitly mounted in its arguments (e.g., `"/Users/username/Desktop"`). Other locations are blocked.
What transport do the servers use?
The configuration examples show stdio transport (command/args) for line‑bot, fetch, word‑document‑service, and filesystem, and HTTP transport (proxy to localhost) for email_mcp.
Basic information
More Other MCP servers
ICSS
chokcoco不止于 CSS
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Maestro
mobile-dev-incPainless E2E Automation for Mobile and Web
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Comments