filesystem vs Jira_mcp_streamlit
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | Jira_mcp_streamlit by pawankumar94 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 5 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Jira_mcp_streamlit · Summary
Streamlit-based Jira assistant with MCP integration for creating, searching, and managing tickets.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
Jira_mcp_streamlit · Use cases
- Project managers tracking development tasks
- Development teams creating and searching Jira tickets
- Jira administrators needing a simplified interface
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
Jira_mcp_streamlit · Install
Installation
- Clone the repository
- Install required packages:
``bash pip install -r requirements.txt ``
- Set up environment variables in a
.envfile:
``env JIRA_URL=https://your-domain.atlassian.net JIRA_EMAIL=your-email@example.com JIRA_API_TOKEN=your-jira-api-token ``
- Start the application:
``bash ./start_jira_assistant.sh ``