MCP Interactsh Bridge
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| INTERACTSH_TOKEN | No | Authorization token if your interactsh server enforces auth. | |
| INTERACTSH_BASE_URL | No | Base URL of the interactsh server to target. | https://oast.pro |
| INTERACTSH_DOMAIN_SUFFIX | No | Domain suffix used to build callback hosts. Override when using a custom interactsh deployment. | host derived from INTERACTSH_BASE_URL |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_interactsh_sessionB | Generates credentials, registers with interactsh, and returns the connection details. |
| list_interactsh_sessionsB | Lists interactsh sessions cached in memory. |
| poll_interactsh_sessionB | Retrieves and decrypts interactions for a session. Optional filters let you match HTTP method, path, query, protocol, or free text. |
| deregister_interactsh_sessionC | Removes a session from interactsh and local cache. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: create (setup), deregister (cleanup), list (view sessions), and poll (retrieve interactions). There is no overlap in functionality, making it easy for an agent to select the correct tool without confusion.
All tool names follow a consistent verb_noun pattern with 'interactsh_session' as the common noun component. The verbs (create, deregister, list, poll) are distinct and descriptive, adhering to a predictable naming convention throughout.
With 4 tools, the server is well-scoped for managing Interactsh sessions. Each tool serves a clear role in the lifecycle (create, list, poll, deregister), and there are no extraneous or missing tools for this domain.
The tool set provides complete CRUD/lifecycle coverage for Interactsh sessions: create (setup), list (view), poll (retrieve data), and deregister (cleanup). There are no obvious gaps, and the optional filters in poll_interactsh_session enhance functionality without leaving dead ends.