gremlin-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@gremlin-mcprun ls -la to list files in the current directory"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
gremlin_mcp
Learning from this Youtube TUT https://www.youtube.com/watch?v=io02ZM0ADqM MCP Full Course for Beginners Note: I asked Copilot or some other LLM to clean up the existing code for tools and added any others it thought would be useful. There are several tools that should be used with caution as they can modify the files and directories. I haven't tested tool usage properly. Need to build something useful with this mcp and with proper guardrails.
An MCP (Model Context Protocol) server that gives an agent terminal and file-management capabilities: run shell/Python commands, search and read files, and create/edit/delete files and folders.
Built on FastMCP.
Tools
The server exposes 21 tools, grouped as follows:
Shell / Python execution
Tool | Purpose |
| Run a shell command (cmd on Windows, sh on Unix) |
| Execute a Python snippet with the running interpreter |
| Execute a Python script file |
Search & read
Tool | Purpose |
| List absolute paths matching a glob pattern |
| Matching lines (with line numbers) in a single file |
| Recursive search under a directory |
| Read a whole file as UTF-8 |
| Read a 1-based range of lines |
| Read an environment variable |
Files & folders
Tool | Purpose |
| Write or append UTF-8 text |
| Find & replace, returns the count changed |
| Copy or move (auto-creates parent dirs) |
| Delete a file or folder |
| Create a folder (including parents) |
| Directory introspection |
Related MCP server: emcp
Requirements
Python >= 3.13
fastmcp >= 3.4.7
Installation
uv sync # recommended
# or
python -m pip install -e .Starting the server
The server communicates over stdio, which is FastMCP's default transport. Start it from the repo root with any of:
uv run python -m gremlin_mcp.main
python test.py serve
python start_gremlin_mcp_server.pyTesting
1. Offline smoke test (no MCP client needed)
python test.pyThis imports the server, calls every tool (creating and cleaning up a
temporary folder), and prints a [PASS]/[FAIL] summary plus a total.
2. Interactive web inspector
fastmcp dev inspector src/gremlin_mcp/main.pyOpens the MCP Inspector in your browser so you can browse the tools, read their descriptions/examples, and call them interactively.
Note:
fastmcp devis a subcommand group, so theinspectorsubcommand must be passed explicitly (fastmcp dev src/...alone will fail).
3. Quick CLI checks
fastmcp inspect src/gremlin_mcp/main.py # server info + tool summary
fastmcp list src/gremlin_mcp/main.py # just the tool names4. Connecting from an MCP client
Point your editor/client's MCP config at the server via stdio, for example:
{
"mcpServers": {
"gremlin-mcp": {
"command": "uv",
"args": ["run", "python", "-m", "gremlin_mcp.main"]
}
}
}Example tool calls
As an agent would issue them:
list_dir(path="src")
search_text(pattern="TODO", directory="src")
read_file(file="pyproject.toml")
write_file(file="hello.py", content="print('hi')")
python_code(code="print(6 * 7)") # -> exit=0 / 42
replace_in_file(path="config.py", old="DEBUG = True", new="DEBUG = False")
tree(path=".", depth=2)Project layout
src/gremlin_mcp/
├── __init__.py
├── tools.py # all tool definitions (21 tools)
└── main.py # FastMCP server entry point
test.py # offline smoke test / optional server launcher
start_gremlin_mcp_server.py # minimal "run the server" launcherSecurity note
run_command, python_code and python_file execute arbitrary code.
Only expose this server to agents/clients you trust, and consider running
it inside a sandbox or restricted working directory.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that provides tools for reading, writing, and editing files on the local filesystem.1,608Apache 2.0
- Alicense-qualityDmaintenanceAn MCP server that gives AI agents SSH capabilities to execute commands, transfer files, and inspect remote systems through a preconfigured host list.43MIT
- Alicense-qualityBmaintenanceMCP server for terminal operations and file editing, enabling AI assistants to manage files, run commands, and process large content with auto-chunking.16MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.
An MCP server for deep research or task groups
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jvcaesar/gremlin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server