Skip to content

Commit d1b222f

Browse files
devin-ai-integration[bot]joycieland0xaguspunk
authored
Update README with MPC wallet configuration and JSON schema information (#437)
* Update README with MPC wallet configuration and JSON schema information Co-Authored-By: joyce@paella.dev <joyce@paella.dev> * Update Node.js version requirement to support up to v23 Co-Authored-By: joyce@paella.dev <joyce@paella.dev> * Update package.json --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: joyce@paella.dev <joyce@paella.dev> Co-authored-by: Agus <armellini13@gmail.com>
1 parent 3c129be commit d1b222f

File tree

1 file changed

+31
-1
lines changed
  • typescript/examples/by-use-case/solana-purchase-on-amazon

1 file changed

+31
-1
lines changed

typescript/examples/by-use-case/solana-purchase-on-amazon/README.md

+31-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cp mcp-solana.example.json mcp-solana.json
3838
- Absolute path to the parent folder of the `model-context-protocol` folder, you can get it by running `pwd` in the `model-context-protocol` folder
3939
- `WALLET_PRIVATE_KEY`
4040
- `RPC_PROVIDER_URL`
41-
- `CROSSMINT_API_KEY`
41+
- `CROSSMINT_API_KEY` (Note: The project configured for CROSSMINT_API_KEY should be a project that has MPC wallets configured instead of smart wallets. To do this, go to https://www.staging.crossmint.com/console or https://www.crossmint.com/console, and configure type of wallets in the Wallets dropdown.)
4242

4343
3. Copy/update the json file and rename it to `claude_desktop_config.json` file to the `~/Library/Application Support/Claude/` directory:
4444
```bash
@@ -61,6 +61,36 @@ This tells Claude for Desktop:
6161
2. Chat with the agent:
6262
- Purchase <link-to-amazon-item>
6363

64+
### Expected JSON Schema for MCP buy_token Tool Response
65+
66+
The MCP buy_token tool should return a response in the following format:
67+
68+
```json
69+
{
70+
"lineItems": [
71+
{
72+
"productLocator": <AMAZON_PRODUCT_LOCATOR>
73+
}
74+
],
75+
"recipient": {
76+
"email": <EMAIL>,
77+
"physicalAddress": {
78+
"name": <NAME>,
79+
"line1": <ADDRESS LINE 1>,
80+
"city": <CITY>,
81+
"state": <STATE>,
82+
"postalCode": <POSTAL CODE>,
83+
"country": "US"
84+
}
85+
},
86+
"payment": {
87+
"method": <CHAIN_NAME>,
88+
"currency": <CURRENCY>,
89+
"payerAddress": <WALLET_ADDRESS>
90+
}
91+
}
92+
```
93+
6494
For more information on how to use the model context protocol, check out the [docs](https://modelcontextprotocol.io/quickstart/server).
6595

6696
<footer>

0 commit comments

Comments
 (0)