posterly-mcp-server 0.27.0 → 0.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/index.js +76 -75
- package/dist/lib/api-client.d.ts +2 -0
- package/dist/lib/tool-annotations.d.ts +2 -0
- package/dist/lib/tool-annotations.js +37 -0
- package/dist/lib/version.d.ts +1 -1
- package/dist/lib/version.js +1 -1
- package/dist/tools/create-connect-session.d.ts +2 -2
- package/dist/tools/create-post.d.ts +6 -6
- package/dist/tools/create-posts-batch.d.ts +4 -4
- package/dist/tools/get-connect-link.d.ts +2 -2
- package/dist/tools/get-platform-schema.d.ts +2 -2
- package/dist/tools/get-post-analytics.js +65 -3
- package/dist/tools/list-posts.d.ts +2 -2
- package/dist/tools/trigger-platform-helper.d.ts +2 -2
- package/dist/tools/validate-post.d.ts +4 -4
- package/package.json +3 -2
- package/scripts/test-tool-annotations.mjs +32 -0
- package/server.json +2 -2
- package/src/index.ts +76 -0
- package/src/lib/api-client.ts +2 -0
- package/src/lib/tool-annotations.ts +47 -0
- package/src/lib/version.ts +1 -1
- package/src/tools/get-post-analytics.ts +66 -3
- package/tool-annotations.json +199 -0
package/README.md
CHANGED
|
@@ -24,6 +24,7 @@ Posterly also exposes the same authenticated toolset over HTTP at [poster.ly/mcp
|
|
|
24
24
|
- Agent skills: `https://www.poster.ly/.well-known/agent-skills/index.json`
|
|
25
25
|
- Agent reference: `https://www.poster.ly/llms-full.txt`
|
|
26
26
|
- Signup and API-key acquisition: `https://www.poster.ly/agents/signup`
|
|
27
|
+
- Smithery: `https://smithery.ai/servers/awpthorp/posterly`
|
|
27
28
|
- Source: `https://github.com/awpthorp/posterly/tree/main/mcp-server`
|
|
28
29
|
|
|
29
30
|
The official MCP Registry metadata is in `server.json`. Its canonical registry
|
|
@@ -270,7 +271,7 @@ Details: [poster.ly/dashboard/api](https://www.poster.ly/dashboard/api)
|
|
|
270
271
|
- API add-on: [poster.ly/dashboard/api](https://www.poster.ly/dashboard/api)
|
|
271
272
|
- MCP server card: [/.well-known/mcp/server-card.json](https://www.poster.ly/.well-known/mcp/server-card.json)
|
|
272
273
|
- OAuth authorization server metadata: [/.well-known/oauth-authorization-server](https://www.poster.ly/.well-known/oauth-authorization-server)
|
|
273
|
-
- OAuth protected resource metadata: [/.well-known/oauth-protected-resource](https://www.poster.ly/.well-known/oauth-protected-resource)
|
|
274
|
+
- OAuth protected resource metadata: [/.well-known/oauth-protected-resource/api/mcp](https://www.poster.ly/.well-known/oauth-protected-resource/api/mcp)
|
|
274
275
|
|
|
275
276
|
## Development
|
|
276
277
|
|