MCP Servers Collection
@iamkaia
About MCP Servers Collection
No overview available yet
Basic information
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
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
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.
More Other MCP servers
Codelf
unbugA search tool helps dev to solve the naming things problem.

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
Maestro
mobile-dev-incPainless E2E Automation for Mobile and Web
Awesome Mcp Servers
punkpeyeA collection of MCP servers.

EverArt
modelcontextprotocolModel Context Protocol Servers
Comments