@agentwonderland/mcp 0.1.18 → 0.1.19

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.
@@ -24,7 +24,7 @@ export async function initiateCardSetup() {
24
24
  */
25
25
  export function formatCardSetupBlocks(qr, url) {
26
26
  return [
27
- qr.trim(),
27
+ "\n" + qr.trim(),
28
28
  [
29
29
  `IMPORTANT: You MUST present this link to the user so they can connect a payment card:`,
30
30
  "",
@@ -66,7 +66,7 @@ export function registerWalletTools(server) {
66
66
  pendingCardSetup = { token };
67
67
  return {
68
68
  content: [
69
- { type: "text", text: qr.trim() },
69
+ { type: "text", text: "\n" + qr.trim() },
70
70
  { type: "text", text: [
71
71
  `IMPORTANT: You MUST present this link to the user so they can connect a payment card:`,
72
72
  "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentwonderland/mcp",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "type": "module",
5
5
  "description": "MCP server for the Agent Wonderland AI agent marketplace",
6
6
  "bin": {
@@ -33,7 +33,7 @@ export async function initiateCardSetup(): Promise<{
33
33
  */
34
34
  export function formatCardSetupBlocks(qr: string, url: string): string[] {
35
35
  return [
36
- qr.trim(),
36
+ "\n" + qr.trim(),
37
37
  [
38
38
  `IMPORTANT: You MUST present this link to the user so they can connect a payment card:`,
39
39
  "",
@@ -101,7 +101,7 @@ export function registerWalletTools(server: McpServer): void {
101
101
 
102
102
  return {
103
103
  content: [
104
- { type: "text" as const, text: qr.trim() },
104
+ { type: "text" as const, text: "\n" + qr.trim() },
105
105
  { type: "text" as const, text: [
106
106
  `IMPORTANT: You MUST present this link to the user so they can connect a payment card:`,
107
107
  "",