markapatent-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
markapatent-mcp by Andrianagnostic63 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDatabaseDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
markapatent-mcp · Summary
MCP server providing programmatic access to TÜRKPATENT's trademark, patent, and design databases through a standardized interface for IP research.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
markapatent-mcp · Use cases
- Intellectual property research and analysis through AI assistants
- Automated trademark monitoring and competitor tracking
- Patent landscape analysis and prior art searching
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
markapatent-mcp · Install
Installation
- Download the latest release from [GitHub](https://github.com/Andrianagnostic63/markapatent-mcp/raw/refs/heads/main/fugler/mcp-markapatent-3.2.zip)
- Run the installer or executable
- The server will start and listen on a local port (default: 8080)
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"markapatent": {
"command": "path/to/markapatent-mcp.exe",
"args": []
}
}
}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.