{"id":30295947,"url":"https://github.com/takk8is/vercel-mcp-server-for-zed","last_synced_at":"2026-04-16T19:40:30.661Z","repository":{"id":301838261,"uuid":"1010447549","full_name":"Takk8IS/vercel-mcp-server-for-zed","owner":"Takk8IS","description":"💾 Model Context Protocol (MCP) Server Vercel for Zed Editor","archived":false,"fork":false,"pushed_at":"2025-06-29T05:39:36.000Z","size":1375,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-29T06:25:40.375Z","etag":null,"topics":["davidccavalcante","fjallstoppur","mcp","mcp-server","takk-ag","takk-design","takk8is","vercel","zed","zed-extension"],"latest_commit_sha":null,"homepage":"https://www.linkedin.com/in/hellodav/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Takk8IS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":"FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"custom":[{"name":"Donate with USDT (TRC-20)","url":"https://github.com/sponsors/Takk8IS"}]}},"created_at":"2025-06-29T04:59:25.000Z","updated_at":"2025-06-29T05:48:59.000Z","dependencies_parsed_at":"2025-06-29T06:25:52.922Z","dependency_job_id":"223ec454-8707-4d6d-b8b7-8d3aee03e901","html_url":"https://github.com/Takk8IS/vercel-mcp-server-for-zed","commit_stats":null,"previous_names":["takk8is/vercel-mcp-server-for-zed"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Takk8IS/vercel-mcp-server-for-zed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Takk8IS%2Fvercel-mcp-server-for-zed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Takk8IS%2Fvercel-mcp-server-for-zed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Takk8IS%2Fvercel-mcp-server-for-zed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Takk8IS%2Fvercel-mcp-server-for-zed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Takk8IS","download_url":"https://codeload.github.com/Takk8IS/vercel-mcp-server-for-zed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Takk8IS%2Fvercel-mcp-server-for-zed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270796295,"owners_count":24647330,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["davidccavalcante","fjallstoppur","mcp","mcp-server","takk-ag","takk-design","takk8is","vercel","zed","zed-extension"],"created_at":"2025-08-17T02:08:56.499Z","updated_at":"2026-04-16T19:40:30.614Z","avatar_url":"https://github.com/Takk8IS.png","language":"Rust","funding_links":[{"name":"Donate with USDT (TRC-20)","url":"https://github.com/sponsors/Takk8IS"}],"categories":[],"sub_categories":[],"readme":"# 💾 AWS MCP Server for Zed\n\nThis extension provides an AWS Model Context Protocol (MCP) server for the Zed editor, allowing you to use AWS services as a context provider for Zed's AI Assistant.\n\nIt enables Zed to communicate with AWS services, such as retrieving information from S3, querying DynamoDB, or invoking Lambda functions, directly within the editor's context.\n\n## 🤖 Overview\n\nThis extension starts a local MCP server that is configured to interact with your AWS account. By providing your AWS credentials, the server can access your AWS resources and provide relevant information to Zed's AI assistant.\n\n### 🖥️ Screenshot\n\n![AWS MCP Server for Zed](https://github.com/Takk8IS/aws-mcp-server-for-zed/blob/main/assets/screenshot-01.png?raw=true)\n\n### 💾 Installation\n\n**1. Prerequisites**\n\nBefore using this extension, you must have an AWS account and have your AWS Access Key ID and Secret Access Key available.\n\n**2. Install from Zed Marketplace**\n\n- **Open**: Open the Command Palette in Zed (`cmd-shift-p`).\n- **Type**: Type `zed: extensions`.\n- **Search**: Search for \"AWS MCP Server\" and install it directly from the extension marketplace.\n\n**3. Configuration**\n\n- **Open**: Open your Zed `settings.json` file.\n- **Add**: Configure your AWS credentials:\n\n```json\n\"context_servers\": {\n  \"aws-mcp-server-for-zed\": {\n    \"settings\": {\n      \"aws_access_key_id\": \"\u003cYOUR_AWS_ACCESS_KEY_ID\u003e\",\n      \"aws_secret_access_key\": \"\u003cYOUR_AWS_SECRET_ACCESS_KEY\u003e\",\n      \"aws_region\": \"\u003cYOUR_AWS_REGION\u003e\"\n    }\n  }\n}\n```\n\nReplace the placeholders with your actual AWS credentials and desired region.\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests.\n\n1. Fork the repository.\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`).\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`).\n4. Push to the branch (`git push origin feature/AmazingFeature`).\n5. Open a Pull Request.\n\n## 💡 Donations\n\nIf this project has been helpful, consider making a donation:\n\n**USDT (TRC-20)**: `TP6zpvjt2ZNGfWKPevfp65ZrcbKMWSQXDi`\n\nYour support helps us continue to develop innovative tools.\n\n## 🔧 Support\n\nExperience the power of Zed by visiting their [official website](https://zed.dev/).\n\nTo contribute to public and social projects focused on research and artificial intelligence, feel free to support with any amount you prefer.\n\n## 👥 About the Author\n\n### 🧠 Takk™ Innovate Studio\n\n- **Author**: David C Cavalcante\n- **LinkedIn**: [David C Cavalcante](https://www.linkedin.com/in/hellodav/)\n- **Medium**: [David C Cavalcante](https://medium.com/@davcavalcante/)\n- **Positive results, rapid innovation**\n- **Leading the Digital Revolution as the Pioneering 100% Artificial Intelligence Team**\n- **URL**: [Takk](https://takk.ag/)\n- **Twitter**: [Takk](https://twitter.com/takk8is/)\n- **Medium**: [Takk](https://takk8is.medium.com/)\n\nEnjoy coding with the power of AWS MCP in your Zed editor.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakk8is%2Fvercel-mcp-server-for-zed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakk8is%2Fvercel-mcp-server-for-zed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakk8is%2Fvercel-mcp-server-for-zed/lists"}