extract_links
Pack: markdown · Endpoint: https://gateway.pipeworx.io/markdown/mcp
Extract all Markdown links text (and bare autolinks) as {text, url} pairs (keyless, offline).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
markdown | string | yes | The Markdown text. |
Example call
Arguments
{
"markdown": "Check out [My Blog](https://myblog.com) and [GitHub](https://github.com/user)."
}
curl
curl -X POST https://gateway.pipeworx.io/markdown/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"extract_links","arguments":{"markdown":"Check out [My Blog](https://myblog.com) and [GitHub](https://github.com/user)."}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('extract_links', {
"markdown": "Check out [My Blog](https://myblog.com) and [GitHub](https://github.com/user)."
});
More examples
{
"markdown": "Visit <https://example.com> or see the [documentation](https://docs.example.com/guide)."
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"markdown": {
"url": "https://gateway.pipeworx.io/markdown/mcp"
}
}
}
See Getting Started for client-specific install steps.