{"id":27043998,"url":"https://github.com/twilio-labs/mcp","last_synced_at":"2025-10-26T17:03:28.853Z","repository":{"id":284835132,"uuid":"954228874","full_name":"twilio-labs/mcp","owner":"twilio-labs","description":"Monorepo providing 1) OpenAPI to MCP Tool generator 2) Exposing all of Twilio's API as MCP Tools","archived":false,"fork":false,"pushed_at":"2025-07-07T21:35:14.000Z","size":488,"stargazers_count":43,"open_issues_count":2,"forks_count":8,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-08T00:45:24.075Z","etag":null,"topics":["ai","mcp","openapi","openapi-generator","openapi3","twilio-api","twilio-mcp"],"latest_commit_sha":null,"homepage":"https://twilioalpha.com/mcp","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/twilio-labs.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,"zenodo":null}},"created_at":"2025-03-24T18:55:50.000Z","updated_at":"2025-07-07T21:35:18.000Z","dependencies_parsed_at":"2025-05-14T21:39:30.607Z","dependency_job_id":null,"html_url":"https://github.com/twilio-labs/mcp","commit_stats":null,"previous_names":["twilio-labs/mcp"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/twilio-labs/mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twilio-labs%2Fmcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twilio-labs%2Fmcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twilio-labs%2Fmcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twilio-labs%2Fmcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/twilio-labs","download_url":"https://codeload.github.com/twilio-labs/mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twilio-labs%2Fmcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264887532,"owners_count":23678696,"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":["ai","mcp","openapi","openapi-generator","openapi3","twilio-api","twilio-mcp"],"created_at":"2025-04-05T05:17:46.534Z","updated_at":"2025-10-26T17:03:23.806Z","avatar_url":"https://github.com/twilio-labs.png","language":"TypeScript","funding_links":[],"categories":["Developer Tools","Kommunikation","Official Servers","Communication","APIs and HTTP Requests","📦 Other","Communication \u0026 Messaging"],"sub_categories":["OpenAPI","Claude API","Dieselbe Konfiguration, CLI und IDE","How to Submit"],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://github.com/twilio-labs/mcp/blob/246f1b1cd1854d1343468af07a2dfa179dc30a16/docs/twilioAlphaLogoLight.png?raw=true#gh-dark-mode-only\" height=\"70\" alt=\"Twilio Alpha\"/\u003e\u003cimg src=\"https://github.com/twilio-labs/mcp/blob/246f1b1cd1854d1343468af07a2dfa179dc30a16/docs/twilioAlphaLogoDark.png?raw=true#gh-light-mode-only\" height=\"70\" alt=\"Twilio Alpha\"/\u003e\u003c/p\u003e\n\u003ch1 align=\"center\"\u003eTwilio MCP Monorepo\u003c/h1\u003e\n\nThis is a monorepo for the Model Context Protocol server that exposes all of Twilio APIs.\n\n## What is MCP?\n\nThe Model Context Protocol (MCP) is a protocol for exchanging model context information between AI tools and services. This implementation allows you to expose Twilio's APIs to AI assistants and other tools that support the MCP protocol.\n\n## Packages\n\nThis monorepo contains two main packages:\n\n- [mcp](/packages/mcp) - MCP Server for all of Twilio's Public API\n- [openapi-mcp-server](/packages/openapi-mcp-server) - An MCP server that serves the given OpenAPI spec\n\nEach package has its own comprehensive README with detailed documentation:\n\n- [MCP Package Documentation](/packages/mcp/README.md)\n- [OpenAPI MCP Server Documentation](/packages/openapi-mcp-server/README.md)\n\n## Quick Start\n\nThe easiest way to get started is by using npx:\n\n```json\n{\n  \"mcpServers\": {\n    \"twilio\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"@twilio-alpha/mcp\",\n        \"YOUR_ACCOUNT_SID/YOUR_API_KEY:YOUR_API_SECRET\"\n      ]\n    }\n  }\n}\n```\n\nVisit [Twilio API Keys docs](https://www.twilio.com/docs/iam/api-keys) for information on how to find/create your API Key and Secret.\n\n## Security Recommendations\n\nTo guard against injection attacks that may allow untrusted systems access to your Twilio data, the ETI team advises users of Twilio MCP servers to avoid installing or running any community MCP servers alongside our official ones. Doing so helps ensure that only trusted MCP servers have access to tools interacting with your Twilio account, reducing the risk of unauthorized data access.\n\n## Basic Configuration Options\n\nBoth packages accept configuration parameters. Here's a brief overview:\n\n- **MCP Server**: Use `--services` and `--tags` to filter which APIs to expose\n- **OpenAPI MCP Server**: Use `--apiPath` to specify OpenAPI spec files location\n\nFor complete configuration details, refer to the package-specific documentation linked above.\n\n## Development\n\n```bash\n# Run tests\nnpm test\n\n# Run linting\nnpm run lint\n\n# Fix linting issues\nnpm run lint:fix\n```\n\n## Troubleshooting Common Issues\n\n- **Context Size Limitations**: Due to LLM context limits, load specific APIs using `--services` or `--tags`\n- **Authentication Issues**: Verify your Twilio API credentials format and permissions\n- **API Versioning**: Check you're using the correct API version (v1, v2, v3) for your needs\n\nFor detailed troubleshooting guidance, see the package-specific documentation.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the ISC License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwilio-labs%2Fmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwilio-labs%2Fmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwilio-labs%2Fmcp/lists"}