You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"summary": "Search teams using MCP server (Global Admin)",
34626
+
"tags": [
34627
+
"Admin - MCP Servers"
34628
+
],
34629
+
"description": "Search and filter teams that have installed a specific MCP server. Supports filtering by team name and slug (partial, case-insensitive). Results are paginated with limit (1-100, default: 20) and offset (default: 0) parameters.",
34630
+
"parameters": [
34631
+
{
34632
+
"schema": {
34633
+
"type": "string"
34634
+
},
34635
+
"in": "query",
34636
+
"name": "name",
34637
+
"required": false,
34638
+
"description": "Filter by team name or slug (partial match, case-insensitive)"
34639
+
},
34640
+
{
34641
+
"schema": {
34642
+
"type": "string",
34643
+
"pattern": "^\\d+$"
34644
+
},
34645
+
"in": "query",
34646
+
"name": "limit",
34647
+
"required": false,
34648
+
"description": "Maximum number of items to return (1-100, default: 20)"
34649
+
},
34650
+
{
34651
+
"schema": {
34652
+
"type": "string",
34653
+
"pattern": "^\\d+$"
34654
+
},
34655
+
"in": "query",
34656
+
"name": "offset",
34657
+
"required": false,
34658
+
"description": "Number of items to skip (≥0, default: 0)"
34659
+
},
34660
+
{
34661
+
"schema": {
34662
+
"type": "string"
34663
+
},
34664
+
"in": "path",
34665
+
"name": "serverId",
34666
+
"required": true,
34667
+
"description": "MCP Server ID"
34668
+
}
34669
+
],
34670
+
"security": [
34671
+
{
34672
+
"cookieAuth": []
34673
+
}
34674
+
],
34675
+
"responses": {
34676
+
"200": {
34677
+
"description": "Filtered list of teams using this MCP server",
34678
+
"content": {
34679
+
"application/json": {
34680
+
"schema": {
34681
+
"type": "object",
34682
+
"properties": {
34683
+
"success": {
34684
+
"type": "boolean",
34685
+
"description": "Indicates operation success"
34686
+
},
34687
+
"data": {
34688
+
"type": "object",
34689
+
"properties": {
34690
+
"server_info": {
34691
+
"type": "object",
34692
+
"properties": {
34693
+
"server_id": {
34694
+
"type": "string",
34695
+
"description": "MCP server unique identifier"
34696
+
},
34697
+
"server_name": {
34698
+
"type": "string",
34699
+
"description": "MCP server name"
34700
+
},
34701
+
"server_slug": {
34702
+
"type": "string",
34703
+
"description": "MCP server slug"
34704
+
}
34705
+
},
34706
+
"required": [
34707
+
"server_id",
34708
+
"server_name",
34709
+
"server_slug"
34710
+
]
34711
+
},
34712
+
"teams": {
34713
+
"type": "array",
34714
+
"items": {
34715
+
"type": "object",
34716
+
"properties": {
34717
+
"team_id": {
34718
+
"type": "string",
34719
+
"description": "Team unique identifier"
34720
+
},
34721
+
"team_name": {
34722
+
"type": "string",
34723
+
"description": "Team name"
34724
+
},
34725
+
"team_slug": {
34726
+
"type": "string",
34727
+
"description": "Team URL slug"
34728
+
},
34729
+
"installations": {
34730
+
"type": "array",
34731
+
"items": {
34732
+
"type": "object",
34733
+
"properties": {
34734
+
"installation_id": {
34735
+
"type": "string",
34736
+
"description": "Installation unique identifier"
34737
+
},
34738
+
"installation_name": {
34739
+
"type": "string",
34740
+
"description": "Installation name"
34741
+
},
34742
+
"created_at": {
34743
+
"type": "string",
34744
+
"description": "ISO8601 timestamp"
34745
+
},
34746
+
"last_used_at": {
34747
+
"type": "string",
34748
+
"nullable": true,
34749
+
"description": "ISO8601 timestamp or null"
34750
+
}
34751
+
},
34752
+
"required": [
34753
+
"installation_id",
34754
+
"installation_name",
34755
+
"created_at"
34756
+
]
34757
+
},
34758
+
"description": "All installations of this server by the team"
34759
+
},
34760
+
"installation_count": {
34761
+
"type": "integer",
34762
+
"description": "Number of installations of this server"
34763
+
},
34764
+
"status_summary": {
34765
+
"type": "object",
34766
+
"properties": {
34767
+
"total_instances": {
34768
+
"type": "integer",
34769
+
"description": "Total number of user instances"
34770
+
},
34771
+
"online": {
34772
+
"type": "integer",
34773
+
"description": "Number of instances with online status"
34774
+
},
34775
+
"offline": {
34776
+
"type": "integer",
34777
+
"description": "Number of instances with offline status"
34778
+
},
34779
+
"error": {
34780
+
"type": "integer",
34781
+
"description": "Number of instances with error or permanently_failed status"
34782
+
},
34783
+
"provisioning": {
34784
+
"type": "integer",
34785
+
"description": "Number of instances in provisioning states"
34786
+
}
34787
+
},
34788
+
"required": [
34789
+
"total_instances",
34790
+
"online",
34791
+
"offline",
34792
+
"error",
34793
+
"provisioning"
34794
+
]
34795
+
}
34796
+
},
34797
+
"required": [
34798
+
"team_id",
34799
+
"team_name",
34800
+
"team_slug",
34801
+
"installations",
34802
+
"installation_count",
34803
+
"status_summary"
34804
+
]
34805
+
}
34806
+
},
34807
+
"pagination": {
34808
+
"type": "object",
34809
+
"properties": {
34810
+
"total": {
34811
+
"type": "number",
34812
+
"description": "Total number of teams"
34813
+
},
34814
+
"limit": {
34815
+
"type": "number",
34816
+
"description": "Number of teams per page"
34817
+
},
34818
+
"offset": {
34819
+
"type": "number",
34820
+
"description": "Number of teams skipped"
34821
+
},
34822
+
"has_more": {
34823
+
"type": "boolean",
34824
+
"description": "Whether there are more teams beyond this page"
34825
+
}
34826
+
},
34827
+
"required": [
34828
+
"total",
34829
+
"limit",
34830
+
"offset",
34831
+
"has_more"
34832
+
]
34833
+
}
34834
+
},
34835
+
"required": [
34836
+
"server_info",
34837
+
"teams",
34838
+
"pagination"
34839
+
]
34840
+
}
34841
+
},
34842
+
"required": [
34843
+
"success",
34844
+
"data"
34845
+
],
34846
+
"description": "Filtered list of teams using this MCP server"
0 commit comments