Copy-Paste MCP

by ananddtyagi

extract-lines

Extract a precise range of lines from text input using start and end line numbers to isolate specific content while maintaining original formatting and structure.

Instructions

Extract a specific range of lines from text content

Input Schema

NameRequiredDescriptionDefault
end_lineYesEnding line number (inclusive)
start_lineYesStarting line number (inclusive)
textYesThe full text content to extract lines from

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "end_line": { "description": "Ending line number (inclusive)", "type": "integer" }, "start_line": { "description": "Starting line number (inclusive)", "minimum": 1, "type": "integer" }, "text": { "description": "The full text content to extract lines from", "type": "string" } }, "required": [ "text", "start_line", "end_line" ], "type": "object" }

You must be authenticated.

Other Tools from Copy-Paste MCP

Related Tools

    ID: oafd1umb6b