afpnews-mcp-server 1.3.9 → 1.3.10
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/build/server.js +1 -1
- package/build/tools/get-article.js +1 -1
- package/package.json +1 -1
package/build/server.js
CHANGED
|
@@ -11,7 +11,7 @@ export async function createServer({ apiKey, username, password, baseUrl, }) {
|
|
|
11
11
|
await apicore.authenticate({ username, password });
|
|
12
12
|
const server = new McpServer({
|
|
13
13
|
name: "afpnews",
|
|
14
|
-
version: "1.3.
|
|
14
|
+
version: "1.3.9",
|
|
15
15
|
});
|
|
16
16
|
const ctx = { server, apicore };
|
|
17
17
|
registerTools(ctx);
|
|
@@ -31,7 +31,7 @@ Returns:
|
|
|
31
31
|
Example:
|
|
32
32
|
{ uno: "newsml.afp.com.20260222T090659Z.doc-98hu39e" }`,
|
|
33
33
|
inputSchema: z.object({
|
|
34
|
-
uno: z.string().describe('The unique UNO identifier of the article
|
|
34
|
+
uno: z.string().describe('The unique UNO identifier of the article'),
|
|
35
35
|
}),
|
|
36
36
|
handler: async (apicore, { uno }) => {
|
|
37
37
|
try {
|