convert-url-to-uri
Transform Bluesky post URLs into AT URIs for compatibility with other tools in the Bluesky MCP Server ecosystem.
Instructions
Convert a Bluesky web URL to an AT URI format that can be used with other tools
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | Bluesky post URL to convert (e.g., https://bsky.app/profile/username.bsky.social/post/postid) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "Bluesky post URL to convert (e.g., https://bsky.app/profile/username.bsky.social/post/postid)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}