list-resources
Discover and access all MCP resources available on the Bluesky MCP Server, including descriptions, to optimize AI assistant interactions with Bluesky/ATProtocol features.
Instructions
List all available MCP resources with their descriptions
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:1438-1453 (registration)Registration of the 'list-resources' tool including inline handler that formats and returns the list of available MCP resources using the imported resourcesListserver.tool( "list-resources", "List all available MCP resources with their descriptions", {}, async () => { const formattedResources = resourcesList.map((resource, index) => { return `Resource #${index + 1}: Name: ${resource.name} URI: ${resource.uri} Description: ${resource.description} ---`; }).join("\n\n"); return mcpSuccessResponse(`Available MCP Resources:\n\n${formattedResources}\n\nTo use these resources, reference them by URI in your prompts or queries.`); } );
- src/resources.ts:277-288 (helper)Array containing metadata of available MCP resources, used by the list-resources tool handler to generate the responseexport const resourcesList = [ { name: "bluesky-platform-info", uri: "bluesky://platform-info", description: "Comprehensive information about the Bluesky platform, its features, and culture" }, { name: "bluesky-post-schema", uri: "bluesky://post-schema", description: "Technical documentation of the Bluesky post schema and structure" } ];