Shippy MCP Server
आधिकारिककाम भेजें। रॉयल्टी कमाएँ।
दस्तावेज़
MCP सर्वर इंस्टॉलेशन
Shippy एक रिमोट मॉडल कॉन्टेक्स्ट प्रोटोकॉल (MCP) सर्वर प्रदान करता है जो AI कोडिंग असिस्टेंट को आपके IDE में सीधे आपके बाउंटीज़ के साथ इंटरैक्ट करने देता है।
डॉक्यूमेंटेशन MCP सर्वर
ध्यान दें कि हम MCP के माध्यम से Shippy डॉक्यूमेंटेशन पढ़ने के लिए एक अलग MCP एंडपॉइंट भी प्रदान करते हैं:
एंडपॉइंट: https://shippy.sh/mcp/docs
इस एंडपॉइंट के लिए किसी प्रमाणीकरण की आवश्यकता नहीं है और यह दो टूल प्रदान करता है:
| टूल | विवरण |
|---|---|
| list_docs | सभी उपलब्ध डॉक्यूमेंटेशन पेजों की सूची बनाएं |
| read_doc | ID द्वारा एक विशिष्ट डॉक्यूमेंटेशन पेज पढ़ें |
यह तब उपयोगी है जब आप चाहते हैं कि आपका AI असिस्टेंट आपके IDE को छोड़े बिना Shippy डॉक्स का संदर्भ ले सके।
विशेषताएँ
Shippy MCP सर्वर के साथ, आपका AI असिस्टेंट यह कर सकता है:
योगदानकर्ताओं के लिए:
- परियोजनाओं में बाउंटीज़ ब्राउज़ और खोजें
- पूर्ण बाउंटी विवरण और स्वीकृति मानदंड पढ़ें
- काम शुरू करने के लिए बाउंटीज़ का दावा करें
- समीक्षा के लिए पूर्ण किया गया कार्य सबमिट करें
- अपने सक्रिय दावों को देखें और प्रबंधित करें
संस्थापकों के लिए:
- बाउंटीज़ बनाएँ और अपडेट करें
- बाउंटीज़ बंद करें और फिर से खोलें
- परियोजना लेबल प्रबंधित करें
- परियोजनाएँ बनाएँ और कॉन्फ़िगर करें (प्रतिष्ठा मोड या लाभ साझाकरण मोड)
पूर्वापेक्षाएँ
- एक Shippy खाता (यहाँ साइन अप करें)
- एक MCP एक्सेस टोकन (अपनी उपयोगकर्ता सेटिंग्स → MCP एक्सेस टोकन में एक जनरेट करें)
त्वरित इंस्टॉल (Cursor)
यदि आप Cursor का उपयोग कर रहे हैं, तो टोकन जनरेट करने के बाद अपनी उपयोगकर्ता सेटिंग्स में "Add to Cursor" बटन पर क्लिक करें। यह स्वचालित रूप से MCP सर्वर को कॉन्फ़िगर करेगा।
मैन्युअल इंस्टॉलेशन
Cursor
इसे ~/.cursor/mcp.json में जोड़ें:
{
"mcpServers": {
"shippy": {
"url": "https://shippy.sh/mcp",
"headers": {
"Authorization": "Bearer shp_YOUR_TOKEN"
}
}
}
}
Windsurf
इसे ~/.codeium/windsurf/mcp_config.json में जोड़ें:
{
"mcpServers": {
"shippy": {
"serverUrl": "https://shippy.sh/mcp",
"headers": {
"Authorization": "Bearer shp_YOUR_TOKEN"
}
}
}
}
नोट: Windsurf HTTP सर्वरों के लिए
urlके बजायserverUrlका उपयोग करता है। Windsurf MCP डॉक्स देखें।
Codex (OpenAI)
Codex ~/.codex/config.toml में TOML कॉन्फ़िगरेशन का उपयोग करता है। आपके पास दो विकल्प हैं:
विकल्प 1: सीधा टोकन (सरल)
इसे ~/.codex/config.toml में जोड़ें:
[mcp_servers.shippy]
url = "https://shippy.sh/mcp"
http_headers = { "Authorization" = "Bearer shp_YOUR_TOKEN" }
विकल्प 2: पर्यावरण चर (अधिक सुरक्षित)
[mcp_servers.shippy]
url = "https://shippy.sh/mcp"
bearer_token_env_var = "SHIPPY_MCP_TOKEN"
फिर अपने शेल में पर्यावरण चर सेट करें (~/.zshrc या ~/.bashrc में जोड़ें):
export SHIPPY_MCP_TOKEN="shp_YOUR_TOKEN"
नोट: अधिक कॉन्फ़िगरेशन विकल्पों के लिए Codex MCP डॉक्यूमेंटेशन देखें।
Claude Desktop
Claude Desktop केवल stdio-आधारित MCP सर्वरों का समर्थन करता है, इसलिए आपको Shippy के HTTP एंडपॉइंट से कनेक्ट करने के लिए mcp-remote की आवश्यकता होगी।
अपने Claude Desktop कॉन्फ़िग में जोड़ें:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"shippy": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://shippy.sh/mcp",
"--header",
"Authorization: Bearer shp_YOUR_TOKEN"
]
}
}
}
Claude Code
Claude Code भी stdio-आधारित सर्वरों का उपयोग करता है। आप CLI के माध्यम से Shippy जोड़ सकते हैं:
claude mcp add shippy -- npx -y mcp-remote https://shippy.sh/mcp --header "Authorization: Bearer shp_YOUR_TOKEN"
या अपनी परियोजना के .mcp.json में जोड़ें:
### Other Clients (stdio-only)
For other MCP clients that only support stdio transport (not Streamable HTTP), use mcp-remote with the same configuration pattern as Claude Desktop above.
> Note: Cursor 0.50+ and Windsurf support Streamable HTTP natively. Claude Desktop, Claude Code, and older clients require mcp-remote.
## Available Tools
### Read Operations
| Tool | Description | Auth |
| --------------------- | ----------------------------------------------------- | ---------- |
| list\_projects | Browse projects on Shippy | Optional\* |
| read\_project | Get project details by slug | Optional\* |
| list\_bounties | List bounties for a project | Optional\* |
| read\_bounty | Get bounty by identifier (e.g., "SHP-42") | Optional\* |
| list\_labels | List all labels for a project | Optional\* |
| read\_label | Get label details by ID | Optional\* |
| list\_comments | List comments on a bounty | Optional\* |
| list\_attachments | List attachments for a bounty, submission, or comment | Optional\* |
| list\_my\_bounties | List bounties you have claimed | Required |
| list\_my\_submissions | List your submissions | Required |
\*Optional: Works without auth for public projects. With auth, also shows your private projects.
### Contributor Operations
| Tool | Description |
| ------------------------------ | ------------------------------------------------ |
| claim\_bounty | Claim a bounty to start working on it |
| release\_claim | Release your claim on a bounty |
| create\_submission | Submit work for a claimed bounty |
| update\_submission | Update a draft/pending submission |
| suggest\_bounty | Suggest a new bounty for founder review |
| create\_comment | Add a comment to a bounty (supports attachments) |
| update\_comment | Update your own comment |
| delete\_comment | Delete a comment (author or founder) |
| get\_contributor\_agreement | View project's contributor agreement |
| accept\_contributor\_agreement | Accept project's contributor agreement |
### Attachment Operations
| Tool | Description |
| ---------------------------- | -------------------------------------------------- |
| generate\_nanoid | Generate a unique ID for pre-uploading attachments |
| get\_attachment\_upload\_url | Get a signed URL to upload a file to R2 |
| create\_attachment | Register an uploaded attachment |
| delete\_attachment | Delete an attachment |
Attachments can be added to bounties, submissions, and comments. For comments, use the `PENDING_COMMENT` reference type when uploading before the comment exists, then pass the generated ID to `create_comment`.
### Founder Operations
| Tool | Description |
| --------------------- | ------------------------------------------------------ |
| create\_bounty | Create a new bounty for a project |
| update\_bounty | Update bounty title, description, points, etc. |
| close\_bounty | Close a bounty (expires claims) |
| reopen\_bounty | Reopen a closed bounty |
| create\_label | Create a new label for a project |
| update\_label | Update label name or color |
| delete\_label | Delete a label from a project |
| create\_project | Create a new project (reputation or profit share mode) |
| update\_project | Update project settings |
| update\_project\_logo | Update or remove project logo |
## Example Usage
Once connected, try prompts like:
> "What bounties am I working on?"
> "Show me bounty SHP-42"
> "List open bounties on the shippy project"
> "Claim bounty SHP-15"
> "Submit my work for SHP-15 with description: Implemented the dark mode toggle. See PR #42."
> "Update submission sub\_123 with description: Added screenshots and test results."
> "Update submission sub\_123 to status: PENDING"
> "Add a comment on SHP-42: Great work! Here's my feedback..."
> "Upload a screenshot to my comment on SHP-42"
For Founders:
> "Create a bounty for my project 'shippy' titled 'Add dark mode support' with 50 points"
> "Update SHP-42 to have 100 points"
> "Create a label called 'urgent' with color #FF0000 for my shippy project"
> "Create a reputation mode project called 'my-oss-project' for open source contributions"
> "Create a profit share project with 10% pool percentage and monthly payouts"
## Troubleshooting
### Server not connecting
1. Verify your token is correct and hasn't been deleted
2. Make sure you're using the correct config file path for your IDE
3. Restart your IDE after making config changes
4. Check that Shippy is accessible at https://shippy.sh/mcp
### Authentication errors
1. Check that your token starts with `shp_`
2. Ensure the `Authorization` header format is `Bearer shp_YOUR_TOKEN` (with a space)
3. Generate a new token if the current one isn't working
### Tools not appearing
1. Make sure the MCP server is enabled in your IDE's settings
2. Check your IDE's MCP logs for connection errors
3. Try refreshing/reloading the MCP server list
### 406 Not Acceptable errors
If you're building your own MCP client, ensure your requests include:
Accept: application/json, text/event-stream
## सुरक्षा
* आपका MCP टोकन आपके Shippy खाते से जुड़ा हुआ है
* टोकन को किसी भी समय आपकी सेटिंग्स से रद्द किया जा सकता है
* प्रत्येक टोकन दिखाता है कि ऑडिटिंग के लिए इसे अंतिम बार कब उपयोग किया गया था
* हम विभिन्न मशीनों के लिए अलग-अलग टोकन का उपयोग करने की सलाह देते हैं
* टोकन उपसर्ग `shp_` GitHub सीक्रेट स्कैनिंग को सक्षम करता है
## संसाधन
* मॉडल कॉन्टेक्स्ट प्रोटोकॉल स्पेसिफिकेशन
* Cursor MCP डॉक्यूमेंटेशन
* Windsurf MCP डॉक्यूमेंटेशन
* Claude Desktop MCP गाइड
* npm पर mcp-remote
## सहायता चाहिए?
Email [email protected]