I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

dcSpark_mcp-server-jupiter
Mirror ofhttps://github.com/dcSpark/mcp-server-jupiter
3 years
Works with Finder
0
Github Watches
1
Github Forks
0
Github Stars
MCP Jupiter
This repository contains a Model Context Protocol (MCP) server that provides Claude with access to Jupiter's swap API. The server enables Claude to perform operations like getting quotes, building swap transactions, and sending swap transactions on the Solana blockchain using Jupiter.
Overview
The MCP server exposes several tools to Claude:
-
jupiter_get_quote
: Get a quote for swapping tokens on Jupiter -
jupiter_build_swap_transaction
: Build a swap transaction on Jupiter -
jupiter_send_swap_transaction
: Send a swap transaction on Jupiter
Prerequisites
- Node.js (v16 or higher)
- Claude Desktop application
Installation
-
Clone this repository:
git clone https://github.com/dcSpark/mcp-server-jupiter.git cd mcp-server-jupiter
-
Install dependencies:
npm ci
-
Build the project:
npm run build
Global Installation
You can also install the package globally or use it directly with npx:
# Install globally
npm install -g @mcp-dockmaster/mcp-server-jupiter
# Or use directly with npx
npx @mcp-dockmaster/mcp-server-jupiter
Configuration
Configure Claude Desktop
To configure Claude Desktop to use this MCP server:
-
Open Claude Desktop
-
Navigate to the Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Linux:
~/.config/Claude/claude_desktop_config.json
- macOS:
-
Add the MCP server configuration:
{
"mcpServers": {
"mcp-server-jupiter": {
"command": "node",
"args": [
"/path/to/your/mcp-server-jupiter/build/index.js"
]
}
}
}
If you've installed the package globally or want to use npx, you can configure it like this:
{
"mcpServers": {
"mcp-server-jupiter": {
"command": "npx",
"args": [
"@mcp-dockmaster/mcp-server-jupiter"
]
}
}
}
Running Locally
# If installed locally
node build/index.js
# If installed globally
mcp-server-jupiter
# Using npx
npx @mcp-dockmaster/mcp-server-jupiter
Usage
Once configured, restart Claude Desktop. Claude will now have access to the Jupiter swap tools. You can ask Claude to:
-
Get a quote for swapping tokens:
What's the quote for swapping 1 SOL to USDC?
-
Build a swap transaction:
Build a swap transaction for the quote I just got.
-
Send a swap transaction:
Send the swap transaction I just built.
Claude will use the MCP server to interact with Jupiter's swap API directly.
Development
Adding New Tools
To add new tools to the MCP server:
- Define the tool in
src/tools.ts
- Create a handler function in the appropriate handler file
- Add the handler to the
handlers
object insrc/tools.ts
Building
npm run build
License
MIT
相关推荐
Converts Figma frames into front-end code for various mobile frameworks.
I find academic articles and books for research and literature reviews.
Confidential guide on numerology and astrology, based of GG33 Public information
Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.
A unified API gateway for integrating multiple etherscan-like blockchain explorer APIs with Model Context Protocol (MCP) support for AI assistants.
Mirror ofhttps://github.com/suhail-ak-s/mcp-typesense-server
本项目是一个钉钉MCP(Message Connector Protocol)服务,提供了与钉钉企业应用交互的API接口。项目基于Go语言开发,支持员工信息查询和消息发送等功能。
Short and sweet example MCP server / client implementation for Tools, Resources and Prompts.
Reviews

user_hUN6bkQO
The MCP Server Project Manual by ningwenjie is an excellent resource for understanding server setup and management. Comprehensive and well-organized, it provides all necessary details to get started efficiently. Highly recommended for both beginners and experienced users! Check it out at the provided URL for a thorough guide.