{"id":28192898,"url":"https://github.com/dcspark/mcp-server-jupiter","last_synced_at":"2026-01-20T16:51:08.868Z","repository":{"id":280198133,"uuid":"941264645","full_name":"dcSpark/mcp-server-jupiter","owner":"dcSpark","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-17T21:44:10.000Z","size":33,"stargazers_count":0,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-16T12:15:44.438Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dcSpark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-01T21:51:49.000Z","updated_at":"2025-03-17T21:44:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"eef5760a-7d4f-4303-a624-0e7df4716933","html_url":"https://github.com/dcSpark/mcp-server-jupiter","commit_stats":null,"previous_names":["dcspark/mcp-server-jupiter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dcSpark/mcp-server-jupiter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcSpark%2Fmcp-server-jupiter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcSpark%2Fmcp-server-jupiter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcSpark%2Fmcp-server-jupiter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcSpark%2Fmcp-server-jupiter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dcSpark","download_url":"https://codeload.github.com/dcSpark/mcp-server-jupiter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcSpark%2Fmcp-server-jupiter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259606977,"owners_count":22883559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-16T12:15:42.324Z","updated_at":"2026-01-20T16:51:08.837Z","avatar_url":"https://github.com/dcSpark.png","language":"TypeScript","funding_links":[],"categories":["Finance \u0026 Fintech"],"sub_categories":["How to Submit"],"readme":"# MCP Jupiter\n\nThis 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.\n\n## Overview\n\nThe MCP server exposes several tools to Claude:\n\n- `jupiter_get_quote`: Get a quote for swapping tokens on Jupiter\n- `jupiter_build_swap_transaction`: Build a swap transaction on Jupiter\n- `jupiter_send_swap_transaction`: Send a swap transaction on Jupiter\n\n## Prerequisites\n\n- Node.js (v16 or higher)\n- Claude Desktop application\n\n## Installation\n\n1. Clone this repository:\n   ```bash\n   git clone https://github.com/dcSpark/mcp-server-jupiter.git\n   cd mcp-server-jupiter\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm ci\n   ```\n\n3. Build the project:\n   ```bash\n   npm run build\n   ```\n\n### Global Installation\n\nYou can also install the package globally or use it directly with npx:\n\n```bash\n# Install globally\nnpm install -g @mcp-dockmaster/mcp-server-jupiter\n\n# Or use directly with npx\nnpx @mcp-dockmaster/mcp-server-jupiter\n```\n\n## Configuration\n\n### Configure Claude Desktop\n\nTo configure Claude Desktop to use this MCP server:\n\n1. Open Claude Desktop\n2. Navigate to the Claude Desktop configuration file:\n   - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\n   - Windows: `%APPDATA%\\Claude\\claude_desktop_config.json`\n   - Linux: `~/.config/Claude/claude_desktop_config.json`\n\n3. Add the MCP server configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"mcp-server-jupiter\": {\n      \"command\": \"node\",\n      \"args\": [\n        \"/path/to/your/mcp-server-jupiter/build/index.js\"\n      ]\n    }\n  }\n}\n```\n\nIf you've installed the package globally or want to use npx, you can configure it like this:\n\n```json\n{\n  \"mcpServers\": {\n    \"mcp-server-jupiter\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"@mcp-dockmaster/mcp-server-jupiter\"\n      ]\n    }\n  }\n}\n```\n\n### Running Locally\n\n```bash\n# If installed locally\nnode build/index.js\n\n# If installed globally\nmcp-server-jupiter\n\n# Using npx\nnpx @mcp-dockmaster/mcp-server-jupiter\n```\n\n## Usage\n\nOnce configured, restart Claude Desktop. Claude will now have access to the Jupiter swap tools. You can ask Claude to:\n\n1. Get a quote for swapping tokens:\n   ```\n   What's the quote for swapping 1 SOL to USDC?\n   ```\n\n2. Build a swap transaction:\n   ```\n   Build a swap transaction for the quote I just got.\n   ```\n\n3. Send a swap transaction:\n   ```\n   Send the swap transaction I just built.\n   ```\n\nClaude will use the MCP server to interact with Jupiter's swap API directly.\n\n## Development\n\n### Adding New Tools\n\nTo add new tools to the MCP server:\n\n1. Define the tool in `src/tools.ts`\n2. Create a handler function in the appropriate handler file\n3. Add the handler to the `handlers` object in `src/tools.ts`\n\n### Building\n\n```bash\nnpm run build\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcspark%2Fmcp-server-jupiter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcspark%2Fmcp-server-jupiter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcspark%2Fmcp-server-jupiter/lists"}